@charset "UTF-8";
:root {
	--color-main: #00A23F;
	--color-sub: #F0F6EC;
}
@media (prefers-color-scheme: light) {
	:root {
		--color-main: #00A23F;
		--color-sub: #F0F6EC;
	}
}
@media (prefers-color-scheme: dark) {
	:root {
		--color-main: #00A23F;
		--color-sub: #F0F6EC;
	}
}
body {
	background-color: #fff;
}
html, button, input, select, textarea {
	color: #212121;
}
* {
	box-sizing: border-box;
	font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;
	color: #212121;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
html {
	font-size: 62.5%;
}
body {
	position: relative;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	overflow-wrap: break-word;
	font-weight: 500;
	font-size: 16px;
	background: #FFFFFF;
}
img {
	max-width: 100%;
	vertical-align: middle;
}
ul {
	padding-left: 0;
	margin: 0;
}
li {
	list-style: none;
}
li img {
	vertical-align: bottom;
}
iframe {
	border: none;
}
a {
	color: #212121;
	outline: none !important;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*:focus {
	outline: none;
}
html, body {
	height: 100%;
}
*, *::before, *::after {
	box-sizing: border-box;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
	margin: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1;
}
a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}
img, picture {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}
a {
	transition: 0.2s;
}
a:hover {
	opacity: 0.7;
	cursor: pointer;
}
@media only screen and (max-width: 767px) {
	a:hover {
		overflow: 1;
	}
}
table {
	border-collapse: collapse;
	width: 100%;
}

.sp {
	display: none !important;
}
@media screen and (max-width: 767px) {
	.sp {
		display: block !important;
	}
}
.pc {
	display: block !important;
}
@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
}

header {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999 !important;
	border-bottom: 1px solid #ccc;
	background: rgb(255, 255, 255);
}
.header_logo a:hover {
	opacity: 1;
	cursor: pointer;
}
.header_logo a {
	display: inline-block;
}
.header_logo-img {
	vertical-align: text-bottom;
	width: 140px;
	height: 50px;
	display: inline-block;
}
.header_inner {
	position: relative;
	background: #FFFFFF;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1400px;
	height: 70px;
	padding: 8px 24px;
	margin: 0px auto;
}
.header_logo-txt {
	line-height: 1.5;
	font-size: 16px;
	margin-left: 20px;
	align-self: flex-end;
	font: weight 500px;
	color: #333333;
	display: inline-block;
}
.header_btn {
	display: flex;
	gap: 6px;
	height: 50px;
	margin-bottom: 3px;
}
@media only screen and (max-width: 767px) {
	.header_logo {
		height: 60px;
		margin-top: 8px;
		margin-right: 16px;
		padding-top: 0;
		padding-bottom: 0;
	}
	.header_logo a {
		text-decoration: none;
	}
	.header_btn {
		position: absolute;
		right: 55px;
		display: block;
		height: 40px;
		margin-bottom: 0;
	}
	.header_inner {
		height: 60px;
		padding: 4px 24px;
	}
	.header_logo-img {
		vertical-align: middle;
		width: 100px;
		height: 36px;
		margin-bottom: 0;
		display: block;
	}
	.header_logo-txt {
		margin-top: 6px;
		display: block !important;
		font-size: 7px;
		margin: 6px 0 0 0;
		text-align: center;
		line-height: 1;
	}
}

nav {
  display: block;
  position: fixed;
  top: 61px;
	left: 0;
  background: #FFFFFF;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: -1;
  opacity: 0;
}
.open nav {
  top: 61px;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #ccc;
}
nav .inner ul li a {
  display: block;
  color: #212121;
  font-size: 1.6rem;
  padding: 1em 1em 1em 0;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a::before {
	content: "";
	display: inline-block;
  border: 2px solid var(--color-main);
	border-radius: 50%;
	margin-left: 10px;
	margin-right: 10px;
	width: 16px;
	height: 16px;
}
nav .inner ul li:last-child a::before {
  border: 2px solid #ed1e79;
}
nav .inner ul li a:hover {
  background: var(--color-sub);
	opacity: 1;
}
@media screen and (max-width: 767px) {
  nav {
    top: -100%;
    width: 100%;
  }
}
.toggle_btn {
  display: block;
  position: fixed;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #000;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 61px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
  z-index: -2;
  cursor: pointer;
}



.btn_download,.btn_application {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #00a23f;
	background-image: url("../img/icon_link.svg");
  background-position: center right 20px;
  background-size: 16px;
	background-repeat: no-repeat;
	color: #fff;
	box-shadow: 0 5px #2A642F;
	text-decoration: none;
	border-radius: 10px;
	line-height: 1.4;
	width: 230px;
	min-height: 50px;
	padding: 10px 0px;
	font-size: 1.6rem;
	text-align: center;
	transition: opacity .3s ease;
	cursor: pointer;
}
.btn_application {
	background: #ed1e79;
	background-image: url("../img/icon_anchor.svg");
  background-position: center right 20px;
  background-size: 16px;
	background-repeat: no-repeat;
	box-shadow: 0 5px #89274F;
}
.btn_download:hover,.btn_application:hover {
	box-shadow: none;
	color: #fff;
	opacity: 1;
	transform: translateY(5px);
	transition: .2s;
}
.cta_btn-container .btn_download,.cta_btn-container .btn_application {
	font-size: 1.8rem;
	width: 400px;
	height: 85px;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
}
.application .btn_application {
	font-size: 2.0rem;
	background-image: url("../img/icon_download.svg");
  background-position: center right 20px;
  background-size: 16px;
	background-repeat: no-repeat;
	width: auto;
	height: 70px;
	line-height: 70px;
	margin: 20px;
	padding: 0;
	text-align: center;
}
@media only screen and (max-width: 1100px) {
	.cta_btn-container .btn_download,.cta_btn-container .btn_application {
		width: 360px;
		height: 70px;
	}
}
@media only screen and (max-width: 767px) {
	.header_btn .btn_application {
		font-size: 1.1rem;
		width: 110px;
		height: 40px;
		min-height: 40px;
		margin-left: 5px;
		margin-right: 5px;
		box-shadow: 0 3px #89274F;
	}
	.header_btn .btn_application:hover {
		box-shadow: none;
		color: #fff;
		opacity: 1;
		transform: translateY(3px);
		transition: .2s;
	}
	.cta_btn-container .btn_download,.cta_btn-container .btn_application {
		font-size: 1.4rem;
		width: 170px;
		height: 50px;
		margin-left: 5px;
		margin-right: 5px;
	}
	.btn_download {
		background-position: center right 10px;
		justify-content: flex-start;
		padding-left: 16px;
	}
	.btn_application {
		background-position: center right 10px;
		justify-content: flex-start;
		padding-left: 16px;
	}
	.application .btn_application {
		font-size: 1.6rem;
		justify-content: center;
		height: 60px;
		line-height: 60px;
		margin-top: 20px;
	}
}




.content {
	position: relative;
	width: 100%;
}
.content__inner {
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
}
@media only screen and (max-width: 1100px) {
	.content__inner {
		padding: 0 2%;
	}
}
@media only screen and (max-width: 767px) {
	.content__inner {
		padding: 0 20px;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(-10px);
	}
}
@keyframes fadeout {
	100% {
		opacity: 0;
	}
}


.kv_container {
	background: #EBF2FA;
	margin-top: 71px;
	width: 100%;
	min-height: 500px;
}
.kv {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 20px 0;
	max-width: 1080px;
}
.kv_txt {
	margin-right: 20px;
}
.kv_subttl {
	background: url("../img/kv_subttl_bg.png") center 0 no-repeat;
	background-size: contain;
	color: #FFFFFF;
	font-size: 2.6rem;
	padding: 6px 10px;
	text-align: center;
}
.kv_ttl {
	font-size: 5.5rem;
	font-weight: 800;
	line-height: 1.1;
}
.kv_ttl img {
	display: inline;
	vertical-align: baseline;
	width: 220px;
}
.kv_ttl-shoulder {
	font-size: 3.2rem;
}
.kv_ttl-shoulder span {
	font-size: 2.8rem;
}
.kv_ttl-product {
	background:linear-gradient(transparent 80%, #FDD835 80%, #FDD835 90%,  transparent 90%);
	color: var(--color-main);
}
.kv_scene {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 20px 0;
	max-width: 1000px;
}
.kv_scene-ttl {
	background: url("../img/kv_attention.png") 0 0 no-repeat;
	font-size: 2.2rem;
	font-weight: 700;
	margin-right: 20px;
	padding: 28px 0 28px 28px;
	text-align: center;
}
.kv_scene img {
	flex-basis: 22%;
	max-width: 22%;
}
@media screen and (max-width: 1100px) {
	.kv_txt {
		margin-left: 10px;
		margin-right: 10px;
	}
	.kv_subttl {
		font-size: 1.8rem;
	}
	.kv_ttl {
		font-size: 4.8vw;
	}
	.kv_ttl img {
		width: 160px;
	}
	.kv_ttl-shoulder {
		font-size: 2.4vw;
	}
	.kv_ttl-shoulder span {
		font-size: 2.0vw;
	}
	.kv_img {
		margin-top: 20px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.kv_img img{
		margin-left: auto;
		margin-right: auto;
	}
	.kv_scene {
		padding-left: 10px;
		padding-right: 10px;
	}
	.kv_scene-ttl {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 767px) {
	.kv_container {
		margin-top: 61px;
		min-height: 400px;
	}
	.kv {
		display: block;
	}
	.kv_subttl {
		font-size: 1.8rem;
	}
	.kv_ttl {
		font-size: 3.8rem;
		text-align: center;
	}
	.kv_ttl img {
		width: 160px;
	}
	.kv_ttl-shoulder {
		font-size: 2.2rem;
	}
	.kv_ttl-shoulder span {
		font-size: 2.0rem;
	}
	.kv_scene {
		display: none;
	}
}




/* キャンペーン */
.campaign_container {
	background: var(--color-main);
	padding-top: 10px;
	padding-bottom: 16px;
}
.contact_attention + .campaign_container {
	margin-top: 80px;
}
.campaign {
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	max-width: 920px;
	text-align: center;
}
.campaign_note {
	color: #FFFFFF;
	font-size: 1.2rem;
	margin-top: 10px;
}
@media screen and (max-width: 767px) {
	.campaign {
		margin-left: 16px;
		margin-right: 16px;
		padding-left: 0;
		padding-right: 0;
	}
}

.section_ttl {
	position: relative;
	color: var(--color-main);
	font-size: 3.8rem;
	font-weight: 700;
	margin: 0 auto;
	padding-top: 60px;
	padding-bottom: 30px;
	text-align: center;
}
.section_ttl::after {
	content: "";
	display: block;
	background: var(--color-main);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 75px;
	height: 6px;
}
.section_ttl img {
	display: inline;
	vertical-align: baseline;
	margin-right: 6px;
	width: 160px;
}
.section_msg {
	margin-top: 40px;
	text-align: center;
}
@media screen and (max-width: 1100px) {
	.section_ttl {
		font-size: 3.0rem;
		padding-top: 60px;
		padding-bottom: 10px;
	}
	.section_ttl img {
		width: 140px;
	}
}
@media screen and (max-width: 767px) {
	.section_ttl {
		padding-top: 0;
		padding-bottom: 10px;
	}
	.feature .section_ttl {
		padding-top: 80px;
	}
	.section_ttl::after {
		width: 50px;
		height: 4px;
	}
	.section_msg {
		text-align: left;
	}
}

.contents {
	position: relative;
}
.anchor_nav {
	position: sticky;
	top:71px;
	display: flex;
	justify-content: center;
	background: #FFF;
	margin-top: 30px;
	padding: 16px 0;
	text-align: center;
	z-index: 100;
}
.anchor_nav li {
	padding: 0 20px;
}
@media screen and (max-width: 1100px) {
	.anchor_nav {
		display: none;
	}
}


/* mineo監視カメラが選ばれる理由 */
.reason {
	padding-top: 80px;
	padding-bottom: 80px;
}
.reason_detail {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}
.reason_detail-item {
	display: flex;
	align-items: center;
	background-color: #FFFFFF;
	background-image: url("../img/reason_bg_lt.svg"),url("../img/reason_bg_rt.svg"),url("../img/reason_bg_lb.svg"),url("../img/reason_bg_rb.svg");
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: top 10px left 10px,top 10px right 10px,bottom 10px left 10px,bottom 10px right 10px;
	background-size: 16px;
	border-radius: 20px;
	filter: drop-shadow(0px 0px 5px rgba(180, 180, 180, 0.5));
	flex-basis: 48%;
	max-width: 48%;
	padding: 30px 32px;
}
.reason_detail-ico {
	flex-basis: 50%;
	max-width: 50%;
	margin-right: 8%;
}
.reason_subttl {
	color: var(--color-main);
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 8px;
}
.reason_subttl sub {
	color: var(--color-main);
	font-size: 1.4rem;
	font-weight: 600;
	vertical-align: baseline;
}
@media screen and (max-width: 1100px) {
	.reason_detail-ico {
		margin-right: 4%;
	}
}
@media screen and (max-width: 767px) {
	.reason_detail {
		display: block;
		margin-top: 40px;
	}
	.reason_detail-item {
		flex-basis: 100%;
		max-width: 100%;
		margin-top: 20px;
		padding: 20px;
	}
	.reason_subttl {
		font-size: 2.0rem;
	}
}


/* 特長 */
.feature {
	background: var(--color-sub);
	padding-bottom: 40px;
}
.feature_detail {
	margin-top: 60px;
}
.feature_txt-container {
	display: flex;
}
.feature_no {
	position: relative;
	background: var(--color-main);
	border-radius: 50%;
	margin-right: 20px;
	min-width: 120px;
	width: 120px;
	height: 120px;
}
.feature_no span.txt {
	font-family: Oswald;
	color: #FFFFFF;
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width :120px;
  text-align:center;
}
.feature_no span.no {
	font-family: Oswald;
	color: #FFFFFF;
  font-size: 5.8rem;
	line-height: 5.8rem;
}
.feature_subttl {
	color: var(--color-main);
	font-size: 2.8rem;
	font-weight: 600;
}
.feature_txt {
	font-size: 1.8rem;
	margin-top: 10px;
}
.feature_img {
	display: flex;
	align-items: center;
	background: #FFFFFF;
	border-radius: 30px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
	max-width: 800px;
}
.feature_detail:nth-of-type(2) .feature_img {
	padding: 0;
}
.feature_detail:nth-of-type(2) .feature_img img {
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	flex-basis: 72%;
	max-width: 72%;
}
.feature_movie {
	display: grid;
	place-content: center;
	margin: 0 20px;
	text-align: center;
}
.feature_movie-ttl {
	color: var(--color-main);
	font-size: 2.0rem;
	font-weight: 600;
}
.feature_detail:nth-of-type(2) .feature_img img:hover {
	opacity: .7;
	cursor: pointer;
}
.feature_detail:nth-of-type(3) .feature_img > img {
	margin-right: 20px;
	flex-basis: 72%;
	max-width: 72%;
}
.feature_detail:nth-of-type(3) .feature_point {
	margin-bottom: 10px;
}
.feature_detail:nth-of-type(4) .feature_img {
	margin-top: 0;
	margin-left: 50px;
	margin-right: 140px;
	flex-basis: 42%;
	max-width: 42%;
	justify-content: center;
}
.feature_note {
	font-size: 1.2rem;
	margin-top: 10px;
	padding-left: 1em;
	text-indent: -1.2em;
}
.feature_img + .feature_note {
	margin-left: 140px;
}
@media screen and (max-width: 1100px) {
	.feature_detail:nth-of-type(4) .feature_img {
		margin-left: 40px;
		margin-right: 60px;
	}
}
@media screen and (max-width: 767px) {
	.feature_detail {
		margin-top: 40px;
	}
	.feature_txt-container {
		display: block;
	}
	.feature_no {
		min-width: 70px;
		width: 70px;
		height: 70px;
		margin-left: auto;
		margin-right: auto;
	}
	.feature_no span.txt {
		font-size:1.4rem;
		width :70px;
	}
	.feature_no span.no {
		color: #FFFFFF;
		font-size: 3.0rem;
		line-height: 3.0rem;
	}
	.feature_subttl {
		font-size: 2.0rem;
		line-height: 1.4;
		margin-top: 10px;
		text-align: center;
	}
	.feature_txt {
		font-size: 1.6rem;
	}
	.feature_img {
		display: block;
		border-radius: 20px;
	}
	.feature_detail:nth-of-type(2) .feature_img img {
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		border-bottom-left-radius: 0;
		flex-basis: 100%;
		max-width: 100%;
		width: 100vw;
	}
	.feature_movie {
		margin: 0;
		padding: 10px 0;
	}
	.feature_detail:nth-of-type(3) .feature_img img {
		margin-left: auto;
		margin-right: auto;
		flex-basis: 100%;
		max-width: 100%;
	}
	.feature_detail:nth-of-type(3) .feature_img img.feature_point {
		margin-top: 10px;
		margin-left: 0;
		margin-right: 0;
		flex-basis: 60%;
		max-width: 60%;
	}
	.feature_detail:nth-of-type(4) .feature_img {
		margin-top: 20px;
		margin-left: 0;
		margin-right: 0;
		flex-basis: 100%;
		max-width: 100%;
		justify-content: center;
	}
	.feature_detail:nth-of-type(4) .feature_img img {
		margin-left: auto;
		margin-right: auto;
	}
	.feature_img + .feature_note {
		margin-left: 0;
	}
}


/* 主要製品ラインナップ */
.lineup {
	padding-top: 80px;
}
.lineup_list {
	display: flex;
	text-align: center;
	gap: 15px;
	margin-top: 60px;
}
.lineup_list-item {
	flex-basis: 33.3%;
	max-width: 33.3%;
}
.lineup_area {
	background: var(--color-main);
	border-radius: 20px;
	color: #FFFFFF;
	font-size: 1.8rem;
	font-weight: 600;
	margin: 0 auto;
	padding: 4px;
	width: 110px;
}
.lineup_list-item img {
	margin: 10px auto;
	width: 50%;
}
.lineup_name {
	border-top: 1px solid var(--color-main);
	border-bottom: 1px solid var(--color-main);
	font-size: 2.0rem;
	font-weight: 600;
	line-height: 1.2;
	margin-top: 24px;
	margin-bottom: 24px;
	padding-top: 12px;
	padding-bottom: 12px;
	display: grid;
  place-content: center;
}
.lineup_model {
	color: var(--color-main);
}
.lineup_point {
	font-size: 1.4rem;
	margin-top: 10px;
}
.lineup_price {
	color: #7d7d7d;
	font-size: 1.6rem;
	font-weight: 600;
	margin-top: 10px;
	text-decoration: line-through;
}
.lineup_price-campaign {
	position: relative;
	color: #ed1e79;
	font-size: 1.6rem;
	font-weight: 600;
}
.lineup_price-campaign::before {
	white-space: pre-wrap;
	content: "キャンペーン\A特価！";
	display: grid;
  place-items: center;
  position: absolute;
  top: -45px;
  left: 0;
	font-size: 1.1rem;
	letter-spacing: -.1em;
	line-height: 1.4;
  margin: 10px;
  padding: 4px 10px;
  background: #ed1e79;
  border-radius: 50%;
  color: #fff;
	width: 80px;
	height: 80px;
}
.lineup_price-campaign::after{
  content: "";
  position: absolute;
  margin: 0;
  bottom: 0;
  left: 80px;
  width: 0;
  height: 0;
  border-top: 20px solid #ed1e79;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  transform: rotate(-60deg);
}
.lineup_price-no {
	color: #7d7d7d;
	font-size: 2.0rem;
	font-family: Oswald;
}
.lineup_price-campaign .lineup_price-no {
	color: #ed1e79;
	font-size: 2.4rem;
}
.lineup_spec-ttl {
	cursor: pointer;
	position: relative;
	border: 2px solid var(--color-main);
	border-radius: 10px;
	color: var(--color-main);
	font-size: 2.2rem;
	margin-top: 40px;
	margin-bottom: 40px;
	padding-top: 8px;
	padding-bottom: 8px;
	text-align: center;
}
.lineup_spec-ttl:hover {
	background: var(--color-sub);
}
.lineup .js-ac-trigger::after {
	content: '';
  width: 12px;
  height: 12px;
  border: 0;
  border-bottom: solid 2px var(--color-main);
  border-right: solid 2px var(--color-main);
  transform: rotate(45deg);
  position: absolute;
  top: -2px;
  bottom: 0;
  margin: auto;
	margin-left: 10px;
}
.lineup .js-ac-target {
	display: none;
}
.lineup .js-ac.is-active .js-ac-trigger:after {
	transform: rotate(-135deg);
	top: 8px;
}
.lineup .js-ac.is-active .js-ac-target {
	display: block;
}
@media screen and (max-width: 1100px) {
	.lineup_price-campaign {
		padding-top: 40px;
	}
	.lineup_price-campaign::before {
		content: "キャンペーン特価！";
		display: block;
		top: 10px;
		left: 15%;
		right: 15%;
		font-size: 1.2rem;
		letter-spacing: 0;
		line-height: 1;
		margin: 0 auto;
		padding: 6px 10px;
		border-radius:20px;
		color: #fff;
		width: 70%;
		height: auto;
	}
	.lineup_price-campaign::after{
		bottom: 30px;
		left: 50%;
		border-top: 20px solid #ed1e79;
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		transform: rotate(0);
		transform: translateX(-50%);
	}
}
@media screen and (max-width: 767px) {
	.lineup_list {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
		margin-top: 40px;
	}
	.lineup_list-item {
		flex-basis: 48%;
		max-width: 48%;
		margin-top: 20px;
	}
	.lineup_area {
		font-size: 1.6rem;
		width: 80px;
	}
	.lineup_list-item img {
		width: 50%;
	}
	.lineup_name {
		font-size: 1.6rem;
		margin-top: 8px;
		margin-bottom: 8px;
		padding-top: 8px;
		padding-bottom: 8px;
	}
	.lineup_point {
		text-align: left;
	}
	.lineup_price-campaign::before {
		left: 5%;
		right: 5%;
		width: 90%;
	}
	.lineup_price-no {
		font-size: 2.0rem;
	}
	.lineup_spec-ttl {
		font-size: 1.8rem;
	}
}


/* 料金 */
.fee {
	padding-top: 80px;
}
.fee_table-container {
	display: flex;
	margin-top: 40px;
	margin-bottom: 20px;
}
.fee_subttl {
	color: var(--color-main);
	font-size: 2.8rem;
	text-align: center;
}
.fee_tax-exclusive {
	font-size: 1.4rem;
	text-align: right;
	margin-top: 10px;
	margin-bottom: 10px;
}
.fee_initial {
	flex-basis: 42%;
	max-width: 42%;
	margin-right: 4%;
}
.fee_initial-table {
	font-size: 1.8rem;
}
.fee_initial-table tr {
	border-bottom: 1px solid var(--color-main);
}
.fee_initial-table tr:first-child {
	border-top: 1px solid var(--color-main);
}
.fee_initial-table td {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: right;
}
.fee_initial-table td.fee_initial-item {
	text-align: left;
}
.fee_initial-regular::before {
	content: "通常価格";
	font-size: 1.1rem;
	background: #5a5a5a;
	border-radius: 4px;
	color: #FFFFFF;
	margin-right: 10px;
	padding: 4px 6px;
	text-align: center;
}
.fee_initial-campaign::before {
	content: "キャンペーン適用価格";
	font-size: 1.1rem;
	background: #ed1e79;
	border-radius: 4px;
	color: #FFFFFF;
	margin-right: 10px;
	padding: 4px 6px;
	text-align: center;
}
.fee_monthly {
	position: relative;
	flex-basis: 58%;
	max-width: 58%;
	padding-left: 4%;
	border-left: 1px solid #bfbfbf;
}
.fee_monthly::before {
  content: "";
  position: absolute;
  top: 50%;
	transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: -30px;
  width: 60px;
  height: 60px;
  background-image: url("../img/icon_plus.png");
  background-size: 60px;
	background-repeat: no-repeat;
}
.fee_monthly-table {
	font-size: 1.8rem;
	margin-bottom: 20px;
}
.fee_monthly-table th {
	background: #5A5A5A;
	color: #FFFFFF;
	font-weight: 400;
	padding-top: 6px;
	padding-bottom: 6px;
}
.fee_monthly-table tr {
	border-bottom: 1px solid var(--color-main);
}
.fee_monthly-recommend{
	background: var(--color-sub);
}
.fee_monthly-recommend td:first-of-type::before {
	content: "おすすめ";
	font-size: 1.1rem;
	background: #ed1e79;
	border-radius: 4px;
	color: #FFFFFF;
	margin-right: 10px;
	padding: 4px 6px;
	text-align: center;
}
.fee_monthly-table td {
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: right;
}
.fee_monthly-table td.fee_monthly-days {
	padding-right: 60px;
}
.fee_monthly-table td.fee_monthly-mobile {
	padding-right: 60px;
}
.fee_monthly-table td.fee_monthly-optical {
	padding-right: 30px;
}
.fee_monthly-no {
	font-size: 2.2rem;
}
.fee_compare-table {
	
}
.fee_compare-table th {
	background: #5A5A5A;
	color: #FFFFFF;
	font-weight: 400;
	padding-top: 6px;
	padding-bottom: 6px;
}
.fee_compare-table tr,.fee_compare-table td {
	border-right: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
	padding-top: 6px;
	padding-bottom: 6px;
	text-align: center;
}
.fee_compare-table th.fee_compare-category {
	background: #e8e8e8;
	border-left: 1px solid #bfbfbf;
	color: #212121;
}
.fee_compare-table img {
	margin-left: auto;
	margin-right: auto;
	width: 40%;
}
.fee_compare-spec {
	background: var(--color-sub);
	border-left: 1px solid #bfbfbf;
	color: var(--color-main);
}
.fee_compare-note {
	font-size: 1.2rem;
	padding-left: 1em;
	text-indent: -1.2em;
	margin-top: 10px;
}
@media screen and (max-width: 820px) {
	.fee_subttl {
		font-size: 2.0rem;
	}
	.fee_table-container {
		display: block;
	}
	.fee_initial {
		flex-basis: 100%;
		max-width: 100%;
		margin-bottom: 10%;
		margin-right: 0;
	}
	.fee_initial-table {
		font-size: 1.6rem;
		margin-top: 10px;
	}
	.fee_initial-table td {
		padding-left: 16px;
		padding-right: 16px;
	}
	.fee_initial-regular::before {
		display: block;
		font-size: 1.1rem;
		margin-right: 0;
	}
	.fee_initial-campaign::before {
		display: block;
		font-size: 1.1rem;
		margin-right: 0;
	}
	.fee_monthly {
		border-top: 1px solid #bfbfbf;
		border-left: none;
		padding-top: 10%;
		padding-left: 0;
		flex-basis: 100%;
		max-width: 100%;
		margin-right: 0;
	}
	.fee_monthly::before {
		top: -20px;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		left: 50%;
		width: 40px;
		height: 40px;
		background-image: url("../img/icon_plus.png");
		background-size: 40px;
	}
	.fee_monthly-table {
		font-size: 1.6rem;
		margin-top: 10px;
	}
	.fee_monthly-table th {
		font-size: 1.4rem;
	}
	.fee_monthly-recommend td:first-of-type::before {
		display: block;
		margin-right: 0;
	}
	.fee_monthly-table td.fee_monthly-days {
		padding-right: 30px;
	}
	.fee_monthly-table td.fee_monthly-mobile {
		padding-right: 30px;
	}
	.fee_monthly-table td.fee_monthly-optical {
		padding-right: 20px;
	}
	.fee_monthly-no {
		font-size: 2.0rem;
	}
	.fee_compare-table {
		font-size: 1.3rem;
	}
	.fee_compare-table img {
		width: 32px;
	}
}


/* 活用事例 */
.case {
	padding-top: 80px;
	padding-bottom: 60px;
}
.case_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}
.case_list-item {
	position: relative;
	background: #FFFFFF;
	border-radius: 20px;
	flex-basis: 47.6%;
	max-width: 47.6%;
	padding: 20px;
	filter: drop-shadow(0px 0px 5px rgba(180, 180, 180, 0.5));
}
.case_list-item::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 12px;
  width: 80px;
  height: 80px;
  background-image: url("../img/case_ico_service.png");
  background-size: 80px;
	background-repeat: no-repeat;
}
.case_list-item:nth-child(2)::before {
  background-image: url("../img/case_ico_retail.png");
}
.case_list-item:nth-child(3)::before {
  background-image: url("../img/case_ico_medical.png");
}
.case_list-item:nth-child(4)::before {
  background-image: url("../img/case_ico_logistics.png");
}
.case_name {
	font-weight: 600;
	text-align: center;
}
.case_name-logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 180px;
}
.case_img {
	margin: 20px -20px;
}
.case_result {
	font-size: 1.6rem;
	font-weight: 600;
	margin-top: 20px;
	text-align: center;
}
.case_result span {
	background:linear-gradient(transparent 80%, #FDD835 80%);
}
.case_before {
	display: flex;
	align-items: center;
	margin-top: 20px;
}
.case_before + .case_before {
	margin-top: 10px;
}
.case_ico-before {
	display: grid;
  place-items: center;
	border: 2px solid var(--color-main);
	border-radius: 50%;
	color: var(--color-main);
	font-size: 1.4rem;
	margin-right: 10px;
	min-width: 60px;
	width: 60px;
	height: 60px;
	line-height: 1.2;
	text-align: center;
}
.case_before li {
	font-size: 1.4rem;
	margin-top: 4px;
	padding-left: 1em;
	text-indent: -1em;
}
.case_before li::before {
	content: "●";
	color:#E1E1E1;
}
.case_triangle {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 42px;
  aspect-ratio: 1/cos(60deg);
  clip-path: polygon(0 0,100% 0,50% 100%);;
  background: var(--color-main);
}
.case_after {
	margin-top: 20px;
}
.case_after::before {
	content: "導入した結果";
	display: block;
	background: var(--color-main);
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	color:#FFFFFF;
	padding: 4px 12px;
}
.case_after ul {
	background: var(--color-sub);
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	padding: 10px;
}
.case_after li {
	font-size: 1.4rem;
	margin-top: 4px;
	padding-left: 1em;
	text-indent: -1em;
}
.case_after li::before {
	content: "●";
	color: var(--color-main);
}
@media screen and (max-width: 1100px) {
	.case_img {
		width: auto;
		margin: 20px -16px;
	}
}
@media screen and (max-width: 767px) {
	.case_list {
		display: block;
		margin-top: 40px;
	}
	.case_list-item {
		max-width: 100%;
		margin-top: 20px;
		padding: 16px;
	}
	.case_list-item::before {
		content: "";
		position: absolute;
		width: 70px;
		height: 70px;
		background-size: 70px;
	}
	.case_name-logo {
		width: 140px;
	}
	.case_result {
		font-size: 1.6rem;
	}
	.case_before,.case_after {
		display: block;
	}
	.case_ico-before {
		border-radius: 20px;
		margin-left: auto;
		margin-right: auto;
		padding-top: 6px;
		padding-bottom: 6px;
		min-width: 110px;
		width: 110px;
		height: auto;
	}
	.case_list .js-ac-trigger {
		position: relative;
	}
	.case_list .js-ac-trigger::before {
		content: '';
		width: 12px;
		height: 12px;
		border: 0;
		border-bottom: solid 2px var(--color-main);
		border-right: solid 2px var(--color-main);
		transform: rotate(45deg);
		position: absolute;
		top: -2px;
		bottom: 0;
		right: 0;
		margin: auto;
	}
	.case_list .js-ac-target {
		display: none;
	}
	.case_list .js-ac.is-active .js-ac-trigger:before {
		transform: rotate(-135deg);
		top: 8px;
	}
	.case_list .js-ac.is-active .js-ac-target {
		display: block;
	}
}



/* 資料ダウンロード */
#download {
	margin-top: -80px;
	padding-top: 80px;
}
.download {
	background: var(--color-sub);
	padding-top: 40px;
	padding-bottom: 40px;
}
.download_container {
	display: flex;
	align-items: center;
	margin: 0 auto;
	max-width: 800px;
}
.download_img {
	flex-basis: 20%;
	max-width: 20%;
	margin-right: 5%;
}
.download_txt-container {
	flex-basis: 75%;
	max-width: 75%;
}
.download_subttl {
	color: var(--color-main);
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 40px;
}
.download_txt {
	margin-top: 20px;
}
.download_btn .btn_download {
	margin-top: 20px;
	width: 360px;
}
@media screen and (max-width: 1100px) {}
@media screen and (max-width: 767px) {
	.download_container {
		display: block;
	}
	.download_img {
		max-width: 40%;
		margin-left: auto;
		margin-right: auto;
	}
	.download_txt-container {
		max-width: 100%;
	}
	.download_subttl {
		font-size: 2.0rem;
		line-height: 1.4;
		margin-top: 20px;
		text-align: center;
	}
	.download_txt {
		margin-top: 10px;
	}
	.download_btn .btn_download {
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}
}

/* キャンペーン詳細 */
.campaign_detail {
	margin: 0 auto;
	padding-top: 90px;
	max-width: 800px;
}
.campaign_detail-ttl {
	background: url("../img/campaign_ttl_bg.png") center 0 no-repeat;
	background-size: contain;
	color: #ed1e79;
	font-size: 3.4rem;
	font-weight: 600;
	line-height: 1.4;
	padding: 16px 0;
	text-align: center;
}
.campaign_detail-list {
	display: flex;
	align-items: center;
  flex-wrap: wrap;
  width: 100%;
	margin-top: 40px;
}
.campaign_detail-list dt {
	border: 1px solid var(--color-main);
	border-radius: 20px;
	color: var(--color-main);
  flex-basis: 20%;
	max-width: 20%;
	margin-right: 20px;
  margin-bottom: 10px;
	padding: 4px;
	text-align: center;
}
.campaign_detail-list dd {
  flex-basis: 75%;
	max-width: 75%;
  margin-bottom: 10px;
}
.campaign_tax-exclusive {
	font-size: 1.4rem;
	text-align: right;
}
.campaign_detail-table {
	border-left: 1px solid #707070;;
	margin-top: 5px;
	margin-bottom: 20px;
}
.campaign_detail-table th {
	background: #5A5A5A;
	color: #FFFFFF;
	font-weight: 400;
	padding-top: 6px;
	padding-bottom: 6px;
}
.campaign_detail-table tr{
	border-right: 1px solid #707070;;
	border-bottom: 1px solid #707070;;
	padding-top: 8px;
	padding-bottom: 8px;
	text-align: center;
}
.campaign_detail-table td {
	border-right: 1px solid #707070;;
	border-bottom: 1px solid #707070;;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
}
.campaign_detail-table td.campaign_detail-product{
	text-align: left;
}
.campaign_detail-table img {
	display: inline;
	margin-right: 8px;
	width: 40px;
}
.campaign_detail-price {
	color: #ed1e79;
}
.campaign_detail-no {
	color: #ed1e79;
	font-size: 1.8rem;
}
.campaign_detail-item {
	font-size: 1.4rem;
}
.campaign_detail-item:last-of-type {
	margin-top: 16px;
}
.campaign_detail-note {
	font-size: 1.2rem;
	padding-left: 1em;
	text-indent: -1.2em;
}
@media screen and (max-width: 1100px) {
	.campaign_detail {
		padding-top: 80px;
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media screen and (max-width: 767px) {
	.campaign_detail-ttl {
		background: url("../img/campaign_ttl_bg_sp.png") center 0 no-repeat;
		font-size: 2.2rem;
		line-height: 1.3;
		padding: 10px 0;
	}
	.campaign_detail-list {
		display: block;
		width: 100%;
		margin-top: 30px;
	}
	.campaign_detail-list dt {
		max-width: 160px;
		margin-top: 15px;
		margin-bottom: 5px;
	}
	.campaign_detail-list dd {
		max-width: 100%;
	}
	.campaign_detail-table {
		font-size: 1.3rem;
	}
	.campaign_detail-table td {
		padding-left: 10px;
		padding-right: 10px;
	}
	.campaign_detail-table td.campaign_detail-product{
		text-align: center;
	}
	.campaign_detail-table img {
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: 40px;
	}
}


/* お申し込みはこちら */
.application {
	padding-top: 80px;
	text-align: center;
}
.application_subttl {
	font-size: 1.8rem;
	margin-top: 40px;
	margin-bottom: 10px;
}
.application_note {
	display: inline-block;
	font-size: 1.2rem;
	margin-top: 10px;
	padding-left: 1em;
	text-indent: -1.2em;
	text-align: left;
	width: 100%;
}
.application_terms {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
.application_terms-item {
	border: 2px solid var(--color-main);
	border-radius: 10px;
	padding-bottom: 20px;
	flex-basis: 48%;
	max-width: 48%;
}
.application_terms-subttl {
	background: var(--color-main);
	color: #FFF;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	font-size: 2.0rem;
	padding: 10px 10px;
}
.application_terms-item a {
	background-image: url("../img/icon_link_bl.svg");
  background-position: center right;
  background-size: 16px;
	background-repeat: no-repeat;
	padding-right: 20px;
}
.application_address-ttl {
	color: var(--color-main);
	font-size: 2.8rem;
	font-weight: 600;
	margin-top: 60px;
	margin-bottom: 10px;
	text-align: center;
}
.application_address {
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	font-size: 1.8rem;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
	max-width: 800px;
}
.contact {
	background: var(--color-sub);
	color: var(--color-main);
	margin-top: 30px;
}
.contact_ttl {
	color:  var(--color-main);
	font-size: 2.8rem;
	font-weight: 600;
	margin-top: 60px;
	margin-bottom: 10px;
}
.contact_subttl {
	background: var(--color-main);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	color: #FFF;
	font-size: 1.8rem;
	padding: 12px 0;
}
.contact_detail {
	padding: 24px 0;
}
.contact_tel {
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact_tel-free {
	background: var(--color-main);
	color: #FFF;
	border-radius: 10px;
	margin-right: 8px;
	padding: 8px;
}
.contact_tel-no {
	color: var(--color-main);
	font-family: Oswald;
	font-size: 5.8rem;
	font-weight: bold;
}
.contact_note {
	display: inline-block;
	font-size: 1.2rem;
	margin-top: 10px;
	margin-left: 20px;
	margin-right: 20px;
	padding-left: 1em;
	text-indent: -1.2em;
  text-align: left;
}
.contact_form {
	font-size: 1.8rem;
	margin-top: 20px;
}
.contact_form a {
	background-image: url("../img/icon_link_bl.svg");
	background-position: center right;
	background-size: 16px;
	background-repeat: no-repeat;
	padding-right: 20px;
}
@media screen and (max-width: 1100px) {}
@media screen and (max-width: 767px) {
	.application {
		margin-top: 0;
	}
	.application_subttl {
		font-size: 1.6rem;
		text-align: left;
	}
	.application_note {
		text-align: left;
	}
	.application_terms {
		display: block;
	}
	.application_terms-subttl {
		font-size: 1.8rem;
	}
	.application_terms-item {
		flex-basis: 100%;
		max-width: 100%;
	}
	.application_terms-item:last-child {
		margin-top: 10px;
	}
	.application_terms-subttl {
		width: 100%;
	}
	.application_address {
		font-size: 1.6rem;
		padding: 10px;
		text-align: left;
	}
	.application_address-ttl {
		font-size: 2.4rem;
	}
	.contact_ttl {
		font-size: 2.4rem;
	}
	.contact_ttl + p {
		text-align: left;
	}
	.contact p {
		font-size: 1.4rem;
	}
	.contact p.contact_subttl {
		font-size: 1.8rem;
	}
	.contact_tel {
		flex-wrap: wrap;
		margin-bottom: 10px;
	}
	.contact p.contact_tel-free {
		font-size: 1.4rem;
	}
	.contact p.contact_tel-no {
		font-size: 4.0rem;
		font-weight: bold;
	}
	.contact_form {
		font-size: 1.6rem;
	}
}


.cta {
	background: #fafaaf;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.lineup + .cta,.fee + .cta {
	margin-top: 10px;
	margin-bottom: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.cta_ttl {
	color: var(--color-main);
	font-size: 2.4rem;
	font-weight: 600;
}
.cta_btn-container {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.cta_btn-container p {
	font-size: 1.6rem;
}
.cta_note {
	font-size: 1.2rem;
	margin-top: 20px;
}
@media screen and (max-width: 1100px) {
	.cta {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media screen and (max-width: 767px) {
	.cta {
		padding-top: 20px;
		padding-bottom: 20px;
		margin-left: auto;
	}
	.cta_ttl {
		font-size: 1.6rem;
	}
	.cta_btn-container {
		margin-top: 20px;
	}
	.cta_btn-container p {
		font-size: 1.2rem;
	}
}

.contact_attention {
	background: #FFFFFF;
	border-radius: 10px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	text-align: center;
	max-width: 820px;
}
.lineup + .cta .contact_attention,.fee + .cta .contact_attention {
	margin-top: 0;
	max-width: 1080px;
}
.contact_attention a {
	color: #ed1e79;
	text-decoration: underline;
	background-image: url("../img/icon_link_bl.svg");
	background-position: center right;
	background-size: 12px;
	background-repeat: no-repeat;
	margin-right: 4px;
	padding-right: 16px;
}
@media screen and (max-width: 768px) {
	.contact_attention {
		font-size: 1.4rem;
		text-align: left;
	}
}



/*-- modal= --*/
.modal__area {
	display: none;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.modal__bg {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}
.modal__wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
	max-width: 960px;
	padding: 0;
	background-color: #fff;
}
.modal__base {
	transition: opacity .3s ease;
	cursor: pointer;
}
.modal__base:hover {
	opacity: 0.7;
}
/* close__modal */
.close__modal {
	position: absolute;
	top: -25px;
	right: -25px;
	background: #eee;
	border-radius: 25px;
	width: 50px;
	height: 50px;
	transition: background .3s ease;
	cursor: pointer;
}
.close__modal:hover {
	background: #fff;
}
.close__modal::before, .close__modal::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	content: "";
	width: 16px;
	height: 2px;
	background: #333;
	transform: rotate(45deg);
}
.close__modal::after {
	transform: rotate(-45deg);
}
/*-- iframe --*/
.iframe__wrap {
	position: relative;
	display: block;
	max-width: 960px;
}
.iframe__inner {
	padding-top: 56.25%;
}
.iframe__base {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* sp */
@media screen and (max-width:767px) {
	.modal__wrapper {
		width: 80%;
	}
	/* close__modal */
	.close__modal {
		top: -22px;
		right: -22px;
		border-radius: 22px;
		width: 44px;
		height: 44px;
	}
	.close__modal::before, .close__modal::after {
		width: 16px;
		height: 2px;
	}
}




.pagetop {
	border: 1px solid #ccc;
	border-left: none;
	border-right: none;
	margin-top: 60px;
}
.pagetop_link {
	display: block;
	background: #f5f5f5;
	height: 50px;
}
.pagetop_link:link {
	color: #333;
	text-decoration: none;
}
.pagetop_link:visited {
	color: #333;
}
.pagetop__inner {
	position: relative;
	border-right: 1px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}
.pagetop__inner::after {
	position: absolute;
	top: 5px;
	right: 20px;
	bottom: 0;
	margin: auto;
	content: "";
	width: 11px;
	height: 11px;
	border-top: 2px solid #333;
	border-left: 2px solid #333;
	transform: rotate(45deg);
}
.pagetop_txt {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	border-right: 1px solid #ccc;
	font-size: 14px;
	height: 50px;
	padding-right: 30px;
	margin-right: 50px;
}
@media screen and (max-width: 1080px) {
	.pagetop__inner {
		border-right: none;
	}
}
@media screen and (max-width: 767px) {
	.pagetop {
		margin-top: 30px;
		display: inherit;
	}
	.pagetop_link {
		height: 40px;
	}
	.pagetop__inner {
		border-right: none;
	}
	.pagetop__inner::after {
		right: 15px;
		width: 8px;
		height: 8px;
	}
	.pagetop_txt {
		width: 100%;
		justify-content: center;
		font-size: 12px;
		height: 40px;
		padding-right: 0;
		padding-left: 40px;
		margin-right: 40px;
	}
}

footer {
	padding-bottom: 0;
}
.footer__inner {
	width: 100%;
	max-width: 1340px;
	margin: 0 auto;
	padding: 40px 0 0;
}
.footer__inner a {
	text-decoration: none;
	transition: 0.2s;
}
.footer__inner a:hover {
	opacity: 0.7;
	text-decoration: none;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	footer {
		padding-bottom: 0;
	}
	.footer__inner {
		display: none;
	}
	.footer__inner a:hover {
		overflow: 1;
	}
}
.footer__logo {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 40px;
}
.footer__logo_img {
	vertical-align: text-bottom;
	width: 140px;
	height: 50px;
	display: inline-block;
}
@media only screen and (max-width: 767px) {
	.footer__logo_img {
		display: block;
	}
}
.footer__logo_txt {
	line-height: 1;
	font-size: 16px;
	margin-left: 20px;
}

#optage_common_footer {
	line-height: 1;
	position: relative;
	text-align: center;
	padding-bottom: 20px;
}
#optage_common_footer a, #optage_common_footer span, #optage_common_footer p {
	font-family: "メイリオ", Meiryo, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
}
#optage_common_footer #optage_common_footer_tax {
	font-size: 12px;
	padding: 20px 15px;
	line-height: 2;
}
#optage_common_footer .logo {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 10px solid #738792;
}
#optage_common_footer .logo:after {
	content: "";
	display: block;
	position: absolute;
	top: auto;
	bottom: -10px;
	left: 50px;
	width: 50px;
	height: 10px;
	background: #fabe00;
}
#optage_common_footer .logo img {
	width: auto;
	height: 30px;
}
#optage_common_footer .logo a {
	opacity: 1;
	display: inline-block;
}
#optage_common_footer .links {
	display: inline-block;
	padding: 0 3% 30px;
	font-size: 12px;
}
#optage_common_footer .links li {
	float: left;
	line-height: 1.7;
}
#optage_common_footer .links li:not(:last-child):after {
	content: "/";
	display: inline-block;
	color: #fabe00;
	padding: 0 3px;
	font-weight: bold;
}
#optage_common_footer .links li a {
	color: #526d7b;
	padding: 3px 5px 1px;
	border-radius: 3px;
	text-decoration: none;
}
@media (min-width: 1025px) {
	#optage_common_footer .links li a {
		transition: all 0.1s ease;
	}
	#optage_common_footer .links li a:hover {
		color: #133664;
		background: #fabe00;
	}
}
#optage_common_footer .pageTop {
	position: fixed;
	right: 20px;
	bottom: 20px;
}
#optage_common_footer .pageTop a {
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 3px;
	background: #133664;
}
#optage_common_footer .pageTop a:after {
	content: "";
	display: block;
	position: absolute;
	top: 45%;
	left: 50%;
	margin-left: -9px;
	width: 18px;
	height: 18px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-135deg);
}
#optage_common_footer .copyright {
	font-size: 11px;
	color: #526d7b;
}
@media (max-width: 1024px) {
	#optage_common_footer #optage_common_footer_tax {
		text-align: left;
	}
	#optage_common_footer .logo {
		margin-bottom: 0;
	}
	#optage_common_footer .links {
		display: block;
		padding: 0 0 30px;
		font-size: 14px;
	}
	#optage_common_footer .links li {
		float: none;
		clear: both;
		line-height: 1;
		text-align: left;
	}
	#optage_common_footer .links li:after {
		display: none !important;
	}
	#optage_common_footer .links li:not(:last-child) {
		margin-right: 0;
		padding: 0;
		border-right: none;
		border-bottom: 1px dotted #bfbfbf;
	}
	#optage_common_footer .links li a {
		display: block;
		padding: 17px 15px 15px;
		border-radius: 0;
		background: #eaeaea;
	}
	#optage_common_footer .pageTop {
		right: 10px;
		bottom: 10px;
	}
	#optage_common_footer .pageTop a {
		width: 40px;
		height: 40px;
	}
	#optage_common_footer .pageTop a:after {
		margin-left: -7px;
		width: 12px;
		height: 12px;
	}
	#optage_common_footer .copyright {
		text-align: center;
		font-size: 14px;
		color: #526d7b;
	}
}