<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*----- キャンペーンバナー -----*/

.bnr_cam a:hover img {
	opacity: 1;
}

/*----- キャンペーンバナーここまで -----*/


a {
	color: #51b1a8;
}

a:hover {
	transition: 0.3s;
	color: #57c9bf;
}

a:hover img {
	transition: 0.5s;
	opacity: 0.7;
}

img {
	max-width: 100%;
	height: auto;
}



* {
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/* boxのpadding borderを内包する */
}

*:before,
*:after {
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/* boxのpadding borderを内包する */
}

/*================================================
 *  commonレイアウト
 ================================================*/
/* ↓bodyで記述すると共通ヘッダーフッターにも影響してしまうので、改めて#paymentで全体をに付与しています */
#payment {
	font-size: 18px;
	color: #2f2f2f;
	/*    font-family: YakuHanJP, "Noto Sans Japanese", sans-serif;*/
	line-height: 1.5;
	/* padding-top: 144px; */
}

section {
	text-align: center;
}

/*================================================
 *  commonパーツ
 ================================================*/
/*     文字寄せ */
.txt-l {
	text-align: left;
}

.txt-c {
	text-align: center;
}

.txt-r {
	text-align: right;
}

.txt-r_s {
	text-align: right;
	font-size: 0.75rem;
	padding-top: 0.2rem;
	line-height: 1.2;
}

/*----- ヒーロー -----*/

.hero_box.index {
	width: 100%;
	height: 350px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(110deg, #57c9bf 0, #000e95 50%, #eaf8ff 50%);
}

.hero_box &gt; div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px 30px;
}

.hero_box &gt; div &gt; div:nth-of-type(1) {
	display: flex;
	flex-flow: column;
	align-items: center;
}

.hero_box &gt; div &gt; div:nth-of-type(2) {
	height: 350px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.hero_box &gt; div &gt; div:nth-of-type(2) &gt; div img {
	width: 100%;
	max-width: 500px;
	vertical-align: bottom;
}

.hero_box.index h1 {
	font-size: 3rem;
	color: #fff;
	margin: 0 0 10px;
}

.hero_box p {
	display: flex;
	align-items: center;
	font-size: 2rem;
	color: #fff;
	position: relative;
}

.hero_box p::before {
	content: "";
	width: 30px;
	height: 1px;
	background: #fff;
	margin: 0 10px 0 0;
}

.hero_box p::after {
	content: "";
	width: 30px;
	height: 1px;
	background: #fff;
	margin: 0 0 0 10px;
}

/*----- ヒーローここまで -----*/


ul.topics {
	width: 85%;
	margin: 30px auto 10px;
}

ul.topics li {
	position: relative;
	padding-left: 10px;
	font-size: 18px;
	line-height: 65px;
	background: rgba(255, 255, 255, 0.5);
	color: rgba(255, 255, 255, 0.5);
}

ul.topics li a {
	color: white;
	vertical-align: baseline;
}

ul.topics li a:hover {
	color: rgba(255, 255, 255, 0.5);
}

ul.topics li img {
	vertical-align: middle;
	padding: 0 5px 5px;
}

ul.topics li:after {
	content: "";
	display: block;
	position: absolute;
	left: 0px;
	height: 0;
	width: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 10px solid rgba(255, 255, 255, 0.5);
	top: 50%;
	transform: translateY(-50%);
}

.hero_price {
	position: absolute;
	bottom: 3px;
	right: 5%;
	font-weight: 500;
}

/*お知らせ*/

.oshirase_box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 1.4rem;
	line-height: 14px;
	border: solid #ccc;
	border-width: 1px 0;
	padding: 0 20px 0 0;
}

.oshirase_box a {
	color: #434343;
	text-decoration: none;
	transition: .3s;
}

section .oshirase_box {
	text-align: left;
}

.oshirase_box a:hover {
	color: #57c9bf;
}

.oshirase_box &gt; div:first-of-type {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #57c9bf;
}

.oshirase_box &gt; div:nth-of-type(2) div:first-of-type {
	margin: 0 30px 0 0;
}

.oshirase_box &gt; div:first-of-type {
	width: 20%;
	text-align: center;
	padding: 20px;
}

.oshirase_box &gt; div:nth-of-type(2) {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 57%;
	line-height: 1.5;
}

.oshirase_box &gt; div:last-of-type {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 20%;
	text-align: right;
}

/*お知らせ ここまで*/


/*================================================
 section each
 ================================================*/
section.grd {
	position: relative;
}

section.grd2 {
	background: -moz-linear-gradient(top, #fff, #e3f9f1);
	/* Firefox用 */
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e3f9f1));
	/* Safari,Google Chrome用 */
	position: relative;
}

section.grd .iconArea {
	position: absolute;
	top: 4px;
	width: 40px;
	z-index: 1;
}

section.grd .iconArea img {
	max-height: 40px;
}

section.grd h2 {
	font-size: 1.8rem;
	font-weight: 500;
	padding: 0.5em 0;
	border-top: solid 2px #69C4BF;
	border-bottom: solid 2px #69C4BF;
	position: relative;
}

section.grd h4 {
	font-size: 1.5rem;
	margin: 20px 0;
	text-align: left;
	margin-bottom: 1em;
	border-left: 8px solid #69C4BF;
	padding-left: 10px;
	padding-bottom: 10px;
	padding-top: 10px;
	border-bottom: 1px solid #8ba598;
}

.logo:hover {
	opacity: 0.6;
}

#payment_table table {
	margin: 0;
	border: none;
}

#bcpos_table th {
	color: #fff;
	font-weight: 300;
	background: #378830;
	padding: 8px 0px;
}

#atkessai_table th {
	color: #fff;
	font-weight: 300;
	background: #b76c2d;
	padding: 8px 0px;
}

section.grd h2 span {
	font-size: 1.8rem;
}

section.grd .flexWrap {
	display: flex;
	justify-content: center;
	padding-top: 5px;
}

section.grd .flexWrap h4 {
	font-size: 22px;
	position: relative;
	display: inline-block;
	padding: 0 35px;
	margin-top: 35px;
}

section.grd .flexWrap h4:before {
	left: 0;
}

section.grd .flexWrap h4:after {
	right: 0;
}

section.grd .flexWrap .itemBox {
	padding: 20px 30px 0;
}

section.grd .flexWrap02 .itemBox02 h6 {
	display: block;
	margin: 0 auto;
	color: #000;
	font-size: 2.4rem;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: left;
}

section.grd .flexWrap02 .itemBox02 p {
	font-size: 1.4rem;
	text-align: left;
}

section.grd .flexWrap .itemBoxIMG {
	padding: 10px 10px 0;
}

section.grd .flexWrap .itemBoxIMG &gt; p {
	font-size: 0.8rem;
}

section.grd .flexWrap .arrow {
	position: relative;
}

section.grd .flexWrap .arrow:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 80%;
	height: 60px;
	content: "";
	color: #69C4BF;
	font-size: 60px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.price {
	color: #bc0000;
	font-size: 28px;
}

.campaign {
	margin-top: 8px;
	background-color: #9a3b3b;
	text-align: center;
	font-size: 15px;
	padding: 5px 10px;
	font-weight: 400;
	color: #ffff;
}


/*================================================
*  取り扱い決済一覧
================================================*/
.iconWrap {
	display: flex;
	align-content: flex-start;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-around;
	padding: 5px;
}

.iconBox {
	margin: 5px;
}

.grid-container {
	margin-top: 10px;
	display: flex;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	grid-template-areas: "cashless";
	font-size: 13px;
}

.cashless {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	display: grid;
	grid-template-columns: 40% 60%;
	grid-template-rows: 1fr;
	grid-template-areas: "wrap1 wrap2";
	grid-area: cashless;
}

.wrap1 {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	display: grid;
	grid-template-areas: "credit""contactless";
	grid-area: wrap1;
	border-right: dotted 0.5px #d9d9d9;
}

.credit {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: credit;
	border-bottom: dotted 0.5px #d9d9d9;
	font-weight: 500;
}

.contactless {
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	grid-area: contactless;
	font-weight: 500;
}

.wrap2 {
	-ms-grid-row: 1;
	-ms-grid-column: 2;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	grid-template-areas: "ic""qr";
	grid-area: wrap2;
	font-weight: 500;
}

.ic1 {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	display: grid;
	grid-template-areas: "text text""trans other";
	grid-area: ic;
	border-bottom: dotted 0.5px #d9d9d9;
}

.text {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	grid-area: text;
}

.trans {
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	grid-area: trans;
	border-right: dotted 0.5px #d9d9d9;
}

.other {
	-ms-grid-row: 2;
	-ms-grid-column: 2;
	grid-area: other;
}

.qr {
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	grid-area: qr;
}

.credit img {
	max-width: 60px;
	width: 6vw;
	vertical-align: middle;
	min-width: 50px;
}

.contactless img {
	margin-top: 5px;
	max-width: 40px;
	min-width: 50px;
	width: 5vw;
	vertical-align: middle;
}

.trans img {
	max-width: 60px;
	min-width: 36px;
	width: 5vw;
	vertical-align: middle;
}

.other img {
	max-width: 60px;
	min-width: 40px;
	width: 5vw;
	vertical-align: middle;
}

.qr img {
	max-height: 33px;
	min-height: 26px;
	height: 3vw;
	vertical-align: middle;
}

/*================================================
* seciton icon
================================================*/

#icon {
	background: #69C4BF;
	height: 280px;
}

#icon h3 {
	color: white;
	font-size: 2.5rem;
}

.IconWrap {
	width: 100%;
	max-width: 980px;
	margin: 10px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}

.Icon_box {
	width: calc(80%/3);
	padding: 0 34px;
	margin-top: 10px;
}

.Icon_box img {
	max-width: 150px;
	width: 150px;
}

/*================================================
* seciton QR
================================================*/
#icon.curled-wrap {
	max-width: 1010px;
	width: 100%;
	max-width: 980px;
	margin: 10px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	color: #f4edd3;
}

#icon .curled-box {
	border-radius: 200px;
	height: 200px;
	width: 200px;
	background: white;
}

#QRpayment .QR img {
	width: 70%;
}

/*================================================
* seciton ic credit
================================================*/
#ic .itemBox02 p {
	margin-top: 10px;
}

h3.ic {
	width: 60%;
	margin: 0 auto;
	background: #69C4BF;
	color: #fff;
	font-size: 1.5rem;
	padding: 8px;
}

.icBox {
	background: #fff;
}

#icon1 .contactless,
.inboundqr,
.domesticqr,
#icon2 .credit,
.inboundqr,
.domesticqr,
.discover {
	display: none;
}

/*================================================
* seciton product2
================================================*/

#product2 {
	background: #fbfafa;
	margin: auto;
}

.kessai_tbl2 {
	border-collapse: collapse;
	width: 100%;
	height: 100%;
	background: #fff;
	border: 1px solid #ccc;
}

.kessai_tbl2:hover {
	cursor: move;
}

.kessai_tbl2 th {
	position: sticky;
	top: 0;
	z-index: 1;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	font-size: 1.4rem;
	font-weight: bold;
	background: #69C4BF;
	padding: 10px;
	border: 1px solid #ccc;
}

.kessai_tbl2 th:nth-child(1) {
	width: 18%;
}

.kessai_tbl2 th:nth-child(3) {
	width: 15%;
}

.kessai_tbl2 th:nth-child(4) {
	width: 15%;
}

.kessai_tbl2 th:nth-child(5) {
	width: 24%;
}

.kessai_tbl2 th:nth-child(6) {
	width: 15%;
}

.kessai_tbl2 th::after {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	border-top: 1px solid #ccc;
}

.kessai_tbl2 th::before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	border-bottom: 1px solid #ccc;
}

.kessai_tbl2 td {
	color: #000;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #ccc;
	padding: 8px;
}

.kessai_tbl2 td:nth-child(4) {
	padding: 25px;
}

.kessai_tbl2 td:nth-child(6) {
	padding: 15px;
}

.kessai_tbl2 td a {
	display: block;
}

.kessai_tbl td.logo img {
	max-height: 90px;
	max-width: 200px;
	text-align: center;
	padding: 0rem 0;
}

.scroll-table {
	overflow-x: scroll;
	white-space: nowrap;
	/*    height: 800px;*/
	max-width: 1200px;
	margin: auto;
}

.logo img {
	display: block;
	margin: auto;
	max-width: 130px;
	width: auto !important
}

.logo span {
	font-size: 1.3rem;
	display: block;
	color: #6074b5;
	border-radius: 30px;
	display: inline-block;
}

.logo :hover {
	opacity: 0.7;
}

.logo_unhover img {
	display: block;
	margin: auto;
	max-width: 130px;
	object-fit: contain;
}

.logo_unhover span {
	font-size: 1.4rem;
	padding: 0.5rem 2rem;
	margin: 5px;
	display: block;
	color: #6074b5;
	border-radius: 30px;
	display: inline-block;
	margin-bottom: 10px;
}

.logo_unhover :hover {
	opacity: none;
}

.logo_img_credit {
	width: 150px;
	min-width: 100px;
	height: 125px;
	object-fit: contain;
}

.logo_img_em {
	width: 205px;
	min-width: 130px;
	object-fit: contain;
	height: 125px;
}

.logo_img_qr {
	width: 210px;
	min-width: 100px;
}

.logo_img_bitcoin {
	width: auto;
	max-height: 20px;
}


/*================================================
* seciton bcpos atkessai
================================================*/
h3 {
	font-size: 1.5rem;
	font-weight: 500;
}

.bcposWrap {
	width: 100%;
	display: flex;
	justify-content: center;
}

.bcposWrap h4 {
	max-width: 400px;
	font-size: 1.1rem;
	font-weight: 500;
	padding: 5px 0;
	margin: 0 auto 2px;
	background: rgba(255, 255, 255, 0.5);
}

.bcposWrap ul {
	max-width: 400px;
	background: rgba(255, 255, 255, 0.5);
	margin: 0 auto;
	padding: 5px 0px;
}

.bcposWrap ul li {
	display: inline-block;
	padding: 3px 5px;
	margin: 3px;
	border: 1px solid #2f2f2f;
	font-size: 0.85rem;
}


/*================================================
* seciton buttonArea
================================================*/
section.buttonArea {
	background: #57c9bf;
	margin: 0 0 30px;
}

.btn-01 a {
	display: block;
	width: 100%;
	margin: 25px auto;
	padding: 1.5vh 2vw;
	font-size: 1.6vw;
	color: #fff;
	border: 2px solid #fff;
}

.btn-01 a:hover {
	transition: 0.3s;
	background: #fff;
	color: #57c9bf;
}

.btn-01 i {
	padding-left: 1vw;
}

.featureWrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-bottom: 10px;
}

.featureBox {
	margin: 5px;
}

.featureBox img {
	height: 40px;
}

.os_box_bcpos,
.os_box_rearegi,
.os_box_atkessai {
	min-width: 140px;
	display: flex;
	align-items: center;
	font-size: 1rem;
	color: #fff;
	margin: 5px 0;
	padding: 8px 5px;
}

.os_box_bcpos {
	background: #6AA84F;
}

.os_box_rearegi {
	background: #0A8398;
}

.os_box_atkessai {
	background: #D17617;
}

.os_box_right {
	width: 45%;
	text-align: right;
	margin: 0 5px 0 0;
}

.os_box_left {
	width: 55%;
	line-height: 0;
	text-align: left;
}

.os_box_bcpos img,
.os_box_rearegi img,
.os_box_atkessai img {
	width: auto;
	height: 18px;
	margin: 0 3px;
}

.op-0 {
	opacity: 0;
}

.op-2 {
	opacity: 0.2;
}

.rearegi_banner {
	width: 100%;
	max-width: 950px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	border: 2px solid #0A8398;
	padding: 15px;
	margin: 0 auto;
}

.rearegi_banner &gt; div {
	width: 37%;
}

.rearegi_banner &gt; div &gt; div {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 10px;
}

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

.rearegi_banner &gt; div:first-of-type img:first-of-type {
	max-width: 200px;
	max-height: 32px;
}

.rearegi_banner &gt; div:last-of-type img:first-of-type {
	max-width: 179px;
	max-height: 32px;
}

.rearegi_banner img:last-of-type {
	max-width: 125px;
	max-height: 100px;
}

.rearegi_banner p {
	display: block;
	width: 20%;
	color: #fff;
	font-size: 1.5rem;
	background: #0A8398;
	padding: 10px;
}

.rearegi_banner a {
	display: inline-block;
	width: 100%;
	max-width: 200px;
	height: fit-content;
	color: #0A8398;
	font-size: 1.4rem;
	border: 1px solid #0A8398;
	border-radius: 18px;
	padding: 5px;
	transition: 0.3s;
}

.rearegi_banner a:hover {
	opacity: 0.3;
}

.thumbnails_bcpos::after {
	content: "";
	width: 18px;
	height: 18px;
	background-image: url(/payment/img/icon_os_win.svg);
	background-repeat: no-repeat;
	margin: 0 0 0 5px;
}

.thumbnails_rearegi::after {
	content: "";
	width: 60px;
	height: 18px;
	background-image: url(/payment/img/icon_os_win_and_apple.svg);
	background-repeat: no-repeat;
	margin: 0 0 0 5px;
}

.thumbnails_atkessai::after {
	content: "";
	width: 42px;
	height: 18px;
	background-image: url(/payment/img/icon_os_win_apple.svg);
	background-repeat: no-repeat;
	margin: 0 0 0 5px;
}

.index_rendou_box &gt; div {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin: 0 0 30px;
}

.index_rendou_box &gt; div &gt; p {
	width: 100%;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	background: #3a60b9;
	padding: 10px;
	margin: 0 0 30px;
}

.index_rendou_box &gt; div &gt; div:nth-of-type(1) {
	display: flex;
	justify-content: center;
	position: relative;
	margin: 0 0 40px;
}

.index_rendou_box &gt; div &gt; div:nth-of-type(1)::before {
	content: "";
	width: 7px;
	height: 50px;
	background: #3a60b9;
	position: absolute;
	bottom: -35px;
}

.index_rendou_box &gt; div &gt; div:nth-of-type(1)::after {
	content: "連携";
	font-size: 2rem;
	font-weight: bold;
	position: absolute;
	bottom: -25px;
	right: 100px;
}

.index_rendou_box &gt; div &gt; div:nth-of-type(1) img {
	width: 100%;
	max-width: 300px;
}

.index_rendou_box &gt; div &gt; div:nth-of-type(2) {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.index_rendou_box &gt; div &gt; div:nth-of-type(2) &gt; div {
	display: flex;
	flex-flow: column;
	align-items: center;
	position: relative;
}

.index_rendou_box &gt; div &gt; div:nth-of-type(2) &gt; div::after {
	content: "";
	width: 100%;
	height: 80px;
	background: #ebebeb;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	z-index: -1;
}

.index_rendou_box &gt; div &gt; div:nth-of-type(2) &gt; div p {
	line-height: 1.5;
}

.index_rendou_box &gt; div &gt; div:nth-of-type(2) &gt; div img {
	width: 100%;
	height: 80px;
	object-fit: contain;
	margin: 0 0 20px;
}



.pos_bg_green {
	background: #6AA84F;
}

.pos_bg_blue {
	background: #0A8398;
}

.pos_bg_orange {
	background: #D17617;
}

a.btn_small,
a.btn_middle,
a.btn_large {
	display: block;
	color: #fff;
	text-align: center;
	background: #69C4BF;
	border-radius: 25px;
	position: relative;
	padding: 10px 0;
	margin: 0 auto;
	transition: 0.3s;
}

a.btn_small {
	max-width: 230px;
}

a.btn_middle {
	max-width: 300px;
}

a.btn_large {
	max-width: 500px;
}

a.btn_large:hover,
a.btn_middle:hover,
a.btn_small:hover {
	color: #fff;
	opacity: 0.5;
}

a.btn_large::after,
a.btn_middle:after,
a.btn_small::after {
	font-family: "Font Awesome 5 Free";
	content: "\f101";
	font-weight: 900;
	margin: 0 0 0 10px;
}

.text_small {
	font-size: 1.2rem !important;
}

.text_large {
	font-size: 2.0rem !important;
}

.text_annotation {
	font-size: 1.0rem !important;
	vertical-align: super;
}

.title_bg_green {
	font-size: 2.2rem;
	color: #fff;
	background: #69C4BF;
	padding: 30px 0;
}

.no_line {
	border: none !important;
}

section.grd h2.bottom_line {
	border-top: none;
	border-bottom: solid 2px #69C4BF;
	padding: 0;
}

.icon_green::before {
	content: "■";
	color: #69C4BF;
}

.img_600px {
	width: 100%;
	max-width: 600px !important;
}

.img_500px {
	width: 100%;
	max-width: 500px !important;
}

.img_400px {
	width: 100%;
	max-width: 400px !important;
}

.img_350px {
	width: 100%;
	max-width: 350px !important;
}

.img_160px {
	width: 100%;
	max-width: 160px !important;
	height: 50px;
	object-fit: contain;
}

.ml-10 {
	margin-left: 10px !important;
}

.ml-10-pc {
	margin-left: 10px !important;
}

.mr-10 {
	margin-right: 10px !important;
	opacity:
}

.opacity_set {
	opacity: 0.2;
}

.bg_gray {
	background: #EEF2F4;
}

.kesai_box section p:nth-of-type(1) {
	text-align: left;
}

.icon_b {
	color: #00863c;
	margin: 0 0 0 10px;
}

.icon_r {
	color: #126c81;
	margin: 0 0 0 10px;
}

/* ------ スライダー ここから----- */

.slideInner {
	display: flex;
}

.slideInner li {
	background-color: #fff;
	border-radius: 10px;
	text-align: center;
}

.slideInner li h5 {
	font-size: 1rem;
	color: #666;
}

.slideInner li h3 {
	font-size: 1.8rem;
	font-weight: bold;
}

.swiper-container {
	padding: 0 10px;
}

.swiper-slide {
	height: auto;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	font-size: 1.6rem;
	text-align: center;
	background: #fff;
	border-radius: 5px;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
	padding: 10px;
}

.swiper-slide img {
	max-width: 130px;
	height: 80px;
	object-fit: contain;
}

.swiper-slide p {
	line-height: 1.5;
}

/*----スライダー_多彩な決済に対応したPOSレジ！_ここから-----*/

.pos_box {
	max-width: 100%;
	display: block;
	padding: 0 30px;
	margin: 0 auto;
}

.slick-list {
	overflow: visible !important;
	z-index: 2;
}

.slick-prev {
	left: 0px !important;
	background: rgba(0, 0, 0, 0.1) url(/assets/img/common/foot_icon_arrow-left.png) no-repeat center center !important;
	z-index: 3;
	width: 25px !important;
	height: 25px !important;
	margin: 0 0 0 20px;
}

.slick-next {
	right: 0px !important;
	background: rgba(0, 0, 0, 0.1) url(/assets/img/common/foot_icon_arrow-right.png) no-repeat center center !important;
	z-index: 3;
	width: 25px !important;
	height: 25px !important;
	margin: 0 20px 0 0;
}

/*common*/
/*thumbnails*/
.thumbnails {
	position: inherit !important;
}

.thumbnails &gt; .slick-list &gt; .slick-track {
	width: 100% !important;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-pack: justify !important;
	-ms-flex-pack: justify !important;
	justify-content: space-between !important;
	z-index: 1;
	-webkit-transform: unset !important;
	transform: unset !important;
}

.thumbnails_inner {
	display: flex !important;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: calc(94%/3) !important;
	cursor: pointer;
	color: #fff;
	z-index: 3 !important;
	border-radius: 3px;
	padding: 10px 0;
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.thumbnails_inner:hover {
	opacity: 0.5;
}

.thumbnails_inner img {
	display: inline;
}

.thumbnails .slick-current {
	position: relative;
	-webkit-transform: scale(1.07);
	transform: scale(1.07);
}

.thumbnails .pos_bg_green.slick-current:before {
	content: "";
	position: absolute;
	right: 0;
	bottom: -19px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #6AA84F transparent transparent transparent;
	border-width: 20px 20px 0 20px;
}

.thumbnails .pos_bg_blue.slick-current:before {
	content: "";
	position: absolute;
	right: 0;
	bottom: -19px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #0A8398 transparent transparent transparent;
	border-width: 20px 20px 0 20px;
}

.thumbnails .pos_bg_orange.slick-current:before {
	content: "";
	position: absolute;
	right: 0;
	bottom: -19px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #D17617 transparent transparent transparent;
	border-width: 20px 20px 0 20px;
}

.thumbnails_bcpos,
.thumbnails_rearegi,
.thumbnails_atkessai {
	display: flex;
	align-items: center;
}

.slider-main {
	width: 100%;
	font-size: 1.4rem;
	margin: auto;
	margin-top: 20px;
	background: #fff;
	-webkit-filter: drop-shadow(0 0px 5px rgba(0, 0, 0, 0.1));
	filter: drop-shadow(0 0px 5px rgba(0, 0, 0, 0.1));
	overflow: hidden !important;
	z-index: 1 !important;
}

.slider_box_green {
	min-height: 320px;
	display: flex !important;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 10px solid #6AA84F;
	padding: 20px 45px;
}

.slider_box_blue {
	min-height: 320px;
	display: flex !important;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 10px solid #0A8398;
	padding: 20px 45px;
}

.slider_box_orange {
	min-height: 320px;
	display: flex !important;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 10px solid #D17617;
	padding: 20px 45px;
}

.slider_box_inner {
	width: 48%;
}

.slider_box_inner2 {
	display: flex;
	justify-content: space-around;
	align-items: baseline;
	gap: 10px;
	border-bottom: 1px dotted #707070;
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
}

.slider_box_inner3 {
	width: 48%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slider_box_img {
	max-height: 260px;
	object-fit: contain;
}

/* ------ スライダー ここまで----- */

.bg_light_green {
	background: #E8F8F8;
}

.sponly {
	display: none;
}

.pconly02 {
	display: inline-block;
}

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

	/*----- ヒーロー -----*/

	.hero_box.index {
		height: auto;
		background: linear-gradient(170deg, #57c9bf 0, #000e95 50%, #eaf8ff 50%);
		padding: 20px 0 0;
	}

	.hero_box &gt; div {
		flex-flow: column;
	}

	.hero_box &gt; div &gt; div:nth-of-type(2) {
		height: auto;
		padding: 0 20px;
	}

	.hero_box &gt; div &gt; div:nth-of-type(1) &gt; div:nth-of-type(1) img {
		max-width: 80px;
	}

	.hero_box &gt; div &gt; div:nth-of-type(2) &gt; div img {
		max-width: 400px;
	}

	/*----- ヒーローここまで -----*/

	section.grd .iconArea {
		display: none;
	}

	.kesai_box section p:nth-of-type(1) {
		min-height: 75px;
	}

	.slider_box_inner &gt; p {
		min-height: 125px;
	}

	.slider_box_inner2 {
		flex-flow: column;
	}

	.btn-01 a {
		width: 80%;
		font-size: 2rem;
	}
}

@media screen and (max-width: 767px) {
	h3 {
		font-size: 1.9rem;
	}

	.hero_box h1 {
		font-size: 2rem;
	}

	.hero_box p {
		font-size: 1.6rem;
	}

	.logo img {
		display: block;
		margin: auto;
		max-width: 100px !important;
	}

	#payment {
		font-size: 14px;
	}

	.oshirase_box {
		padding: 0;
	}

	.oshirase_box &gt; div:first-of-type {
		width: 100%;
		padding: 10px 0;
	}

	.oshirase_box &gt; div:nth-of-type(2) {
		width: 100%;
		padding: 20px 10px
	}

	.oshirase_box &gt; div:last-of-type {
		width: 100%;
		text-align: center;
		padding: 0 10px 10px;
	}

	.index_rendou_box &gt; div &gt; div:nth-of-type(2) {
		grid-template-columns: repeat(3, 1fr);
	}

	section.grd h2 {
		font-size: 1.7rem;
	}

	table.kessai_tbl2 td:nth-child(1) {
		width: 120px !important;
	}

	table.kessai_tbl2 td:nth-child(3),
	table.kessai_tbl2 td:nth-child(4),
	table.kessai_tbl2 td:nth-child(5) {
		width: calc(50%/3);
	}

	.payment_icon img {
		width: 160px;
	}

	.logo span {
		padding: 0rem 0rem;
	}

	.scroll-table {
		overflow-x: scroll;
		white-space: nowrap;
		height: 600px;
	}

	.Icon_box img {
		max-width: 80px !important;

	}

	#icon {
		height: 200px !important;
	}

	h3.ic {
		width: 90%;
		font-size: 3.7vw;
	}

	.kessai_icon {
		width: 60%;
		margin: 0 auto;
		text-align: center;
	}

	.kessai_icon img {
		max-width: 300px;
		margin: 20px auto;
	}

	.cardkessai_txt {
		width: 100%;
		text-align: center;
		margin: 0 auto;
	}

	.cardkessai_txt h3 {
		font-size: 18px;
		text-align: center;
		font-weight: 700;
		color: #000;
	}

	.cardkessai_txt p {
		margin-top: 10px;
		text-align: center;
		font-size: 16px;
		line-height: 22px;
	}

	.tbl_logo {
		width: 100%;
	}

	.tbl_logo img {
		width: 160px;
		margin: 0 auto;
	}

	.kessai_tbl2 {
		background: #fff;
	}

	table.kessai_tbl_sp {
		width: 100%;
		border: 1px solid #fff;
	}

	table.kessai_tbl_sp td:first-child,
	table.kessai_tbl_sp td:last-child {
		background-color: #fff;
		font-size: 1.4rem;
		width: 50%;
		vertical-align: middle;
		padding: 0.4rem 0;
		border: 1px solid #ccc;
	}

	table.kessai_tbl_sp td span {
		font-size: 1rem;
		padding: 1rem;
		display: block;
	}

	table.kessai_tbl_sp td img {
		width: 80%;
		padding: 1rem;
	}

	table.kessai_tbl_sp2 {
		width: 100%;
		border: 1px solid #ccc;
	}

	table.kessai_tbl_sp2 th {
		width: 50% !important;
		/*  display:!important;*/
	}

	table.kessai_tbl_sp2 td {
		width: 50% !important;
		/*  display:!important;*/
	}

	table.kessai_tbl_sp2 td:first-child {
		background-color: #ffffff;
		font-size: 1.4rem;
		width: 100%;
		vertical-align: middle;
		padding: 0.4rem 0;
		border: 1px solid #ccc;
	}

	table.kessai_tbl_sp2 td:last-child {
		background-color: #fff;
		font-size: 1.4rem;
		width: 100%;
		vertical-align: middle;
		padding: 0.4rem 0;
		border: 1px solid #ccc;
	}

	table.kessai_tbl_sp2 td span {
		font-size: 1rem;
		/*    padding: 1rem;*/
		/*    display: block;*/
	}

	table.kessai_tbl_sp2 td img {
		width: 80%;
		padding: 1rem;
	}

	.btn-01 a {
		width: 95%;
		font-size: 4vw;
	}

	.Icon_box {
		width: calc(75%/3) !important;
		padding: 0 0px;
		margin-top: 10px;
	}

	.pos_box {
		max-width: 400px;
		padding: 0;
	}

	.slider_box_inner &gt; p {
		min-height: 150px;
	}

	.thumbnails_bcpos,
	.thumbnails_rearegi,
	.thumbnails_atkessai {
		flex-direction: column;
	}

	.slider_box_inner,
	.slider_box_inner3 {
		width: 100%;
	}

	.slider_box_img {
		height: 155px;
	}

	.slider_box_green,
	.slider_box_blue,
	.slider_box_orange {
		min-height: 525px;
	}

	.rearegi_banner &gt; div,
	.rearegi_banner p {
		width: 100%;
		margin: 0 0 30px;
	}

	.rearegi_banner &gt; div:last-of-type {
		margin: 0;
	}

	.kesai_box section p:nth-of-type(1) {
		min-height: 100%;
	}

	.mb-10-sp {
		margin-bottom: 10px !important;
	}

	.mb-20-sp {
		margin-bottom: 20px !important;
	}

	.mb-30-sp {
		margin-bottom: 30px !important;
	}

	.ml-10-pc {
		margin-left: 0 !important;
	}

	.text_small {
		font-size: 1rem !important;
	}

	.pconly,
	.pconly02 {
		display: none;
	}

	.sponly {
		display: block;
		text-align: center;
		margin: 0 auto;
	}
}


/* 20240702 add */
.cashlessall_box_inner { display:flex; flex-flow:row wrap; justify-content:space-between; align-items:center; gap:inherit !important; }
.cashlessall_box_innerWrap { display:flex; flex-flow:row wrap !important; justify-content:space-between; align-items:center; gap:inherit !important; width:68%; margin:0; padding:5px 1%; border:#808080 1px solid; }
.cashlessall_box_inner_left { display:flex; flex-flow:row wrap; justify-content:center; align-items:center; align-self:stretch; width:30%; margin:0 5% 0 0; padding:0 5% 0 0; border-right:#808080 1px solid; box-sizing:border-box; }
.cashlessall_box_inner_left img { width:100%; max-width:inherit !important; height:auto; max-height:inherit !important; }
.cashlessall_box_inner_middle { display:flex; flex-flow:row wrap; justify-content:center; align-items:center; align-self:stretch; width:14%; margin:0; padding:0 2% 0 0; }
.cashlessall_box_inner_middle img { width:100%; max-width:inherit !important; height:auto; max-height:inherit !important; }
.cashlessall_box_inner_right { display:flex; flex-flow:row wrap; justify-content:flex-start; align-items:center; align-self:stretch; width:45%; }
.cashlessall_box_inner_right img { width:21.5% !important; max-width:inherit !important; height:auto !important; max-height:inherit !important; margin:1.5% 3% 1.5% 0; }
.cashlessall_box_inner_right2 { display:flex; flex-flow:row wrap; justify-content:flex-start; align-items:center; align-self:stretch; width:28%; }
.cashlessall_box_inner_right2 img { width:48% !important; max-width:inherit !important; height:auto !important; max-height:inherit !important; margin:0 2% 0 0; }
@media screen and (max-width: 767px) {
.cashlessall_box .cashlessall_box_inner { display:flex; flex-flow:row wrap; justify-content:space-between; align-items:center; gap:inherit !important; }
.cashlessall_box .cashlessall_box_innerWrap { display:flex !important; flex-flow:row wrap !important; justify-content:space-between !important; align-items:center !important; width:68%; padding:10px 1%; border:#808080 1px solid; }
.cashlessall_box .cashlessall_box_inner_left { display:flex; flex-flow:row wrap; justify-content:center; align-items:center; align-self:stretch; width:30%; margin:0 5% 0 0; padding:0 5% 0 0; border:0; border-right:#808080 1px solid; box-sizing:border-box; }
.cashlessall_box .cashlessall_box_inner_left img { width:100%; max-width:inherit !important; height:auto; max-height:inherit !important; }
.cashlessall_box .cashlessall_box_inner_middle { display:flex; flex-flow:row wrap; justify-content:center; align-items:center; align-self:stretch; width:14%; margin:0; padding:0 2% 0 0; }
.cashlessall_box .cashlessall_box_inner_middle img { width:100%; max-width:inherit !important; height:auto; max-height:inherit !important; }
.cashlessall_box .cashlessall_box_inner_right { display:flex; flex-flow:row wrap; justify-content:flex-start; align-items:center; align-self:stretch; width:45%; padding:0; }
.cashlessall_box .cashlessall_box_inner_right img { width:21.5% !important; max-width:inherit !important; height:auto !important; max-height:inherit !important; margin:1.5% 3% 1.5% 0; }
.cashlessall_box .cashlessall_box_inner_right2 { display:flex; flex-flow:row wrap; justify-content:flex-start; align-items:center; align-self:stretch; width:28%; }
.cashlessall_box .cashlessall_box_inner_right2 img { width:48% !important; max-width:inherit !important; height:auto !important; max-height:inherit !important; margin:0 2% 0 0; }
}</pre></body></html>