@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');

/* CSS Document */
/**********************************************************************リセット*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-align: center;
	text-decoration: none;
	color: #3c4141;
	border-collapse: collapse;
	max-width: 100%;
}

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1.5;
	font-family: 'Noto Sans JP', sans-serif;
	background-color: #fff;
	width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

nav ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

a {
	margin: 0;
	padding: 0;
	font-size: 16px;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
	display: block;
	font-weight: 400;
	overflow-wrap: break-word;
	word-break: break-word;
	color: #3c4141;
}

img {
	width: 100%;
}

* {
	box-sizing: border-box;
}

.hover-big:hover {
	transform: scale(1.08, 1.08);
	opacity: 0.8;
	transition: 0.5s;
}

.con01 {
	width: 1200px;
	margin: 0 auto;
}

/**********************************************************************リセット*/



/**********************************************************************ヘッダー*/
header {
	padding: 30px 0 15px;
	width: 100%;
	align-items: center;
	position: fixed;
	/* 以下のtopにエラーが出ていたのでコメントにしてあります */
	top: 0;
	left: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.8);
	border-bottom: solid 0.5px #C8C8C8;
	/* margin-top: -140px; */
}

.rogo-head {
	width: 320px;
	padding-bottom: 16px;
}

nav {
	margin: 0 0 0 auto;
}

ul {
	list-style: none;
	margin: 0;
	display: flex;
}


.pc-nav ul li a {
	color: #3c4141 !important;
	font-size: min(16px, 16px);
	font-weight: 500;
	transition: color 0.5s ease-in-out 0s;
}

.pc-nav ul li a:hover {
	color: rgba(0, 0, 0, 0.8) !important;
}

.sp-nav {
	display: none;
}

.earth {
	width: 30px;
	height: 30px;
	margin: 0 0 -10px 0;
}

header>div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.rogo {
	width: 260px;
	margin-bottom: 20px;
}

.head-right {
	text-align: right;
}

.head-right>.pc-nav {
	display: flex;
	align-items: center;
}

.contact-head {
	display: inline-block;
	transition: opacity 0.5s ease-in-out 0s;
}


.pc-nav ul li {
	margin: 0 24px;
}

@media screen and (max-width: 1180px) {
	body {
		width: 1180px;
	}
}

@media screen and (max-width: 640px) {
	body {
		width: 100%;
	}

	.pc-nav {
		display: none;
	}

	header {
		padding: 3%;
		/* margin-top: -57px; */
	}

	.headermenu>.con01 {
		padding: 0;
	}

	.rogo-head {
		width: 60%;
	}

	.header-btn {
		display: none;
	}

	.sp-nav {
		z-index: 1;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		display: block;
		width: 100%;
		background: rgba(40, 185, 210, .9);
		opacity: 0;
		transform: translateY(-100%);
		transition: all .2s ease-in-out;
	}

	#hamburger {
		position: relative;
		display: block;
		width: 30px;
		height: 25px;
		margin: 10px 0 0 0;
	}

	#hamburger span {
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 100%;
		height: 2px;
		background-color: #28B9D0;
		transform: translateY(-50%);
	}

	#hamburger::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #28B9D0;
	}

	#hamburger::after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #28B9D0;
	}

	/*スマホメニュー*/
	.sp-nav ul {
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
	}

	.sp-nav li {
		margin: 0;
		padding: 0;
		height:
	}

	.sp-nav li a {
		color: #fff !important;
	}

	.sp-nav li span {
		font-size: 15px;
		color: #fff;
	}

	.sp-nav li a,
	.sp-nav li span {
		display: block;
		padding: 10px 0;
		font-weight: bold;
	}

	.nav-sub {
		font-size: 0.8em;
		text-align: left;
		font-weight: normal;
		padding: 5px;
	}

	/*-閉じるアイコンー*/
	.sp-nav .close {
		position: relative;
		padding-left: 20px;
	}

	.sp-nav .close::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 16px;
		height: 1px;
		background: #fff;
		transform: rotate(45deg);
	}

	.sp-nav .close::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 16px;
		height: 1px;
		background: #fff;
		transform: rotate(-45deg);
	}

	.toggle {
		transform: translateY(0);
		opacity: 1;
	}

	.contact-head {
		width: 120px;
		margin: 0 10px -15px;

	}

	.head-right {
		width: auto;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}


}

/**********************************************************************ヘッダー*/

/**********************************************************************ヘッダースクロール時*/
header.scrolled {
	padding: 15px 16px;
}

header.scrolled .rogo-head {
	padding-bottom: 0;
}

header.scrolled .menu {
	height: auto;
}

header.scrolled .rogo-text {
	visibility: collapse;
	height: 0;
	opacity: 0;
	transition: .2s ease;
	opacity: 0;
	margin: 0;
}

header.scrolled .header-btn {
	visibility: collapse;
	height: 0;
	opacity: 0;
	transition: .2s ease;
	margin-bottom: 0;
}

/**********************************************************************ヘッダースクロール時*/

/**********************************************************************ボトムナビ*/

.bottom_label {
	position: fixed;
	bottom: -50px;
	right: 0;
	z-index: 2;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transition: .2s ease;
	border: 3px solid #0055AA;
	width: 288px;
}

.bottom_label .toggle_wrap {
	padding: 12px 24px;
	padding-top: 30px;
}

.bottom_label .toggle_wrap:hover {
	cursor: pointer;
}

.bottom_label .wrap {
	display: none;
	margin-top: 24px;
	padding: 0 24px 12px;
}

.bottom_label .wrap .service-head {
	margin-left: 0;
	width: 100%;
	margin: 12px 0;
}

.bottom_label .wrap .ask-head {
	margin-left: 0;
	width: 100%;
}

.bottom_label p {
	white-space: nowrap;
	font-weight: 600;
}

.bottom_label .arrow {
	width: 40px;
	margin: 0 auto 12px;
	transition: .3s ease;
}

.bottom_label .arrow.active {
	transform: rotate(180deg);
	transition: .3s ease;
}

.bottom_label .flex {
	display: flex;
	align-items: center;
}

.bottom_label .flex img {
	width: 40px;
	margin-right: 12px;
}

.bottom_label.scrolled {
	bottom: 0;
	opacity: 1;
	visibility: visible;
	transition: .2s ease;
}

.bottom_label .header-dropdown {
	position: relative;
	display: inline-block;
}

.bottom_label .drop-btn {
	height: 40px;
	font-size: 14px;
	width: 160px;
	background-color: #FFFFFF;
	border-radius: 6px;
	color: #1E4696;
	border: 2px solid #1E4696;
	font-weight: 600;
	margin-right: 8px;
}

.bottom_label .button-sky {
	height: 40px;
	width: 160px;
	color: #FFFFFF;
	font-weight: 600;
	background-color: #28B9D2;
	border-radius: 6px;
	border: none;
	font-size: 14px;
}

.bottom_label button {
	width: 100%;
	margin: 8px 0 16px;
}

/**********************************************************************ボトムナビ*/

/**********************************************************************ドロップダウン*/

.menu {
	position: relative;
	width: 100%;
	height: 50px;
	margin: 0 auto;
}

.menu_langage {
	width: 50px;
	margin: 0 0 -20px 0;
}

.menu>li {
	float: left;
	line-height: 40px;
}

.menu>li a {
	display: block;
	color: #fff;
}

.menu>li a:hover {
	color: #999;
}

ul.menu__second-level {
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}

ul.menu__third-level {
	visibility: hidden;
	opacity: 0;
}

ul.menu__fourth-level {
	visibility: hidden;
	opacity: 0;
}

.menu>li:hover {
	-webkit-transition: all .5s;
	transition: all .5s;
}

.menu__second-level li a:hover {
	color: #28B9D0 !important;
}

.menu__third-level li a:hover {
	background: #fff;
}

.menu__fourth-level li a:hover {
	background: #fff;
}

/* 下矢印 */
.init-bottom:after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 0 3px 5px;
	border-right: 2px solid #28B9D2;
	border-bottom: 2px solid #28B9D2;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.langage {
	width: 10px !important;
}

/* floatクリア */
.menu:before,
.menu:after {
	content: " ";
	display: table;
}

.menu:after {
	clear: both;
}

.menu {
	*zoom: 1;
}

.menu>li.menu__single {
	position: relative;
}

li.menu__single ul.menu__second-level {
	position: absolute;
	display: list-item;
	top: 40px;
	background: #fafafa;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	min-width: 160px;
	left: -24px;
}

li.menu__single ul.menu__second-level>li {
	border-bottom: solid 1px #fff;
}

.langage>ul.menu__second-level {
	width: 0 !important;
	margin: -15px;
}



.langage>ul.menu__second-level>li>a {
	width: 70px !important;
	color: #3c4141;
	margin-left: 5px;
	margin: 0 -20px -20px 0;
	padding: 0 0 5px 0;
}

.menu__second-level>li>a {
	text-align: left;
}

li.menu__single:hover ul.menu__second-level {
	top: 50px;
	visibility: visible;
	opacity: 1;
}

li.menu__single:hover ul.menu__second-level a {
	white-space: nowrap;
}

@media screen and (max-width: 640px) {
	.menu_langage {
		width: 0;
		margin: 0 20px 0 0;
	}
}

/**********************************************************************ドロップダウン*/


/**********************************************************************スクロールでフワッと*/
.scroll-y {
	animation-name: fadein;
	animation-duration: 0.8s;
}

.scroll-y2 {
	animation-name: fadein;
	animation-duration: 1.3s;
}

.scroll-y3 {
	animation-name: fadein;
	animation-duration: 1.6s;
}

.scroll-y4 {
	animation-name: fadein;
	animation-duration: 2s;
}

@keyframes fadein {
	from {
		opacity: 0;
		transform: translatey(50px);
	}

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

.scroll-y5 {
	animation-name: fadein2;
	animation-duration: 0.8s;
}

.scroll-y6 {
	animation-name: fadein2;
	animation-duration: 1.6s;
}

.scroll-y7 {
	animation-name: fadein2;
	animation-duration: 2s;
}

@keyframes fadein2 {
	from {
		opacity: 0;
		transform: translatey(-100px);
	}

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


/**********************************************************************スクロールでフワッと*/

/**********************************************************************トップ*/
.top {
	display: flex;
	margin-top: 150px;
	padding-top: 50px;
	padding-bottom: 30px;
	align-items: flex-start;
}

.topimg {
	width: 680px;
	height: auto;
}

.top-left {
	margin-right: 30px;
	text-align: left;
}

.top-h1 {
	display: flex;
	align-items: center;
}

h1 {
	text-align: left;
	font-weight: bold;
	font-size: 32px;
	line-height: 48px;
	vertical-align: middle;
}

.top-h1>img {
	width: 72px;
}

h3 {
	font-size: 24px;
	text-align: left;
	color: #1E4696;
}

.top-left ul {
	display: block;
	text-align: left;
	margin: 15px 0;
}

.top-left ul li {
	text-align: left;
	font-weight: bold;
	padding-left: 20px;
	line-height: 1.6em;
	background: url("../imges/check01.svg") left 0px top 5px no-repeat;
	background-size: 15px auto;
}

.icons {
	display: flex;
	justify-content: space-between;
	width: 450px;
}

.icons img {
	width: 150px;
}

.top-buttons {
	width: 450px;
	display: flex;
	justify-content: space-around;
	margin-top: 20px;
}

.top-buttons a {
	width: 220px;
}

/**********************************************************************トップ*/

/**********************************************************************EC経営改善*/
#supplychain {
	background: #F3F8F8;
	padding: 20px 0 50px;
}

#supplychain h1 {
	text-align: center;
	margin: 20px auto;
}

.area {
	margin: auto;
	flex-wrap: wrap;
	display: flex;

}

.tab_class {
	width: 180px;
	height: 50px;
	margin-right: 20px;
	background-color: rgba(255, 255, 255, 0.50);
	line-height: 50px;
	font-size: 15px;
	text-align: center;
	display: block;
	float: left;
	order: -1;
	color: rgba(40, 185, 210, 0.80);
	border-radius: 25px;
	border: solid 1px rgba(40, 185, 210, 0.80);
}

#tab6 {
	margin-right: 0;
}

input[name="tab_name"] {
	display: none;
}

input:checked+.tab_class {
	background-color: rgba(40, 185, 210, 1.00);
	color: rgba(255, 255, 255, 1.00);
}


.content_class>div {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 30px;
}

.content_class>div>div {
	text-align: left;
}

.content_class>div>div>h4 {
	text-align: left;
	font-size: 22px;
}

.content_class>div>div>p {
	margin: 20px 0;
	text-align: left;
}

.content_class>div>div>a {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	width: 260px;
}

.content_class>div>img {
	width: 855px;
}


.content_class {
	display: none;
	width: 100%;
}

input:checked+.tab_class+.content_class {
	display: block;
}

/**********************************************************************EC経営改善*/

/**********************************************************************表*/
.list {
	padding: 50px 0;
}

.list table {
	width: 100%;
}

.list table tr td,
.list table tr th {
	border: solid 1px #000;
	vertical-align: middle;
	padding: 5px 20px;
	text-align: left;
	height: 70px;
	font-size: 18px;
	font-weight: bold;
}

.list table tr th {
	background: #F3F8F8;
}

.list table tr th img {
	width: 300px;
}

.list table tr td:last-child>a {
	display: inline-block;
	width: 200px;
	font-weight: bold;
}

/**********************************************************************表*/

/**********************************************************************EC事業者の主な課題*/
.theme {
	background: url("../imges/26394192_l.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 30px 0;
}

h2 {
	font-size: 24px;
}

.title-theme {
	height: 33px;
	width: auto;
	margin-top: 10px;
}

.improvement {
	display: flex;
	justify-content: space-between;
}

.improvement>div {
	width: 48%;
	border-radius: 10px;
	padding: 15px 30px;
	background: #fff;
	margin-top: 15px;
}

.improvement>div>h5 {
	font-size: 24px;
	color: #1E4696;
}

.improvement-text {
	font-size: 18px;
	margin-top: 10px;
	font-weight: bold;
}

.improvement>div>div {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.improvement div ul {
	display: block;
	text-align: left;
	margin: 15px 0;
}

.improvement div ul li {
	text-align: left;
	font-weight: bold;
	padding-left: 20px;
	line-height: 1.6em;
	background: url("../imges/check01.svg") left 0px top 5px no-repeat;
	background-size: 15px auto;
}

.improvement>div>div>img {
	width: 100px;
	height: 100px;
}

/**********************************************************************EC事業者の主な課題*/


/**********************************************************************収益改善*/

.profitability {
	padding: 30px 0;
}

.profitability>h1 {
	text-align: center;
	margin-bottom: 30px;
}

/**********************************************************************収益改善*/

/**********************************************************************SCMの特長*/
.features {
	padding: 32px 0;
	background: #F3F8F8;
}

.title-features {
	width: 475px;
	margin-bottom: 30px;
}

.features>div {
	width: 1200px;
	margin: 0 auto;
	padding: 50px;
	background-color: #fff;
	border-radius: 20px;
	text-align: left;
	margin-bottom: 20px;
}

.features-title {
	display: inline-block;
	text-align: left;
	font-size: 26px;
	font-weight: bold;
}

.features-title img {
	height: 50px;
	width: 153px;
	display: inline-block;
	margin-right: 10px;
}

.features>div>div {
	display: flex;
	justify-content: space-between;
	text-align: left;
	margin: 30px 0 0;
	align-items: flex-start;
}

.features>div>div>div {
	margin: 0 30px 0 0;
}

.features>div>div>div>a {
	text-align: left;
	line-height: 2em;
	text-indent: -1em;
	padding-left: 1em;
	font-weight: bold;
}

.features-text,
.features-text-red {
	text-indent: 0 !important;
	padding-left: 0 !important;
}

.features-text-red {
	color: #C80000;
	margin-top: 15px;
}

.features>div>div>img {
	width: 588px;
}

.point-read {
	text-align: left;
	margin: 20px 0;
	font-size: 18px;
	font-weight: 600;
}

.point05 {
	display: flex;
	justify-content: space-between;
}

.point05>div,
.point05>div>a {
	text-align: left;
}

.point05>div>a {
	font-weight: bold;
	line-height: 2em;

}

.point05>div>img {
	height: 30px;
	width: auto;
	margin-top: 5px;
}

.point05>a {
	width: 220px;
	margin-left: 30px;
}

.point05-red {
	width: 320px;
	border-radius: 5px;
	background: #C80000;
	color: #fff;
	text-align: center !important;
	margin-top: 5px;
}

.ill-point2 {
	height: auto;
}

.point05-line {
	margin: 20px 0;
}

.point05-ast {
	font-size: 16px;
	font-weight: normal !important;
	margin-top: 30px;
}

/**********************************************************************SCMの特長*/


/**********************************************************************footer*/
footer {
	padding: 50px 0 100px;
	background-color: #FAFAFA;
}

.footer-rogo {
	width: 448px;
	margin: 0 auto 50px;
}

.footer-text {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.footer-text>div {
	margin-right: 36px;
}

.footer-text div a {
	text-align: left;
	margin-bottom: 5px;
}

.company,
.link-a {
	font-weight: 600;
}

.link-a {
	margin-top: 20px;
}

.footer-text>div>.link-a:first-child {
	margin-top: 0;
}

.company span,
.address,
.copyright,
.link-b {
	font-size: 14px;
}

.link-b>span {
	color: #28B9D2;
}

.footerrogos {
	width: 340px;
	margin: 30px 0;
}



/**********************************************************************footerここまで*/



/********************************************************************************************************************************下層頁共通用*/

.top-back {
	background: #F3F8F8;
	margin-top: 140px;
	padding: 50px 0;
	width: 100%;
}

.top-back>.con01>img {
	width: 690px;
	height: 200px;
	object-fit: cover;
}

.top-back>.con01>div>a {
	text-align: left;
	width: 400px;
	margin-top: 8px;
}

/********************************************************************************************************************************下層頁共通用*/




.mob {
	display: none;
}

/********************************************************************************************************************************モバイル用*/

@media screen and (max-width: 640px) {
	.mob {
		display: block;
	}

	.con01 {
		width: 100%;
		padding: 0 5%;
		margin: 0;
	}




	/**********************************************************************スクロールでフワッと*/
	.scroll-y {
		animation-name: fadein;
		animation-duration: 0.8s;
	}

	.scroll-y2 {
		animation-name: fadein;
		animation-duration: 1.3s;
	}

	.scroll-y3 {
		animation-name: fadein;
		animation-duration: 1.6s;
	}

	.scroll-y4 {
		animation-name: fadein;
		animation-duration: 2s;
	}

	@keyframes fadein {
		from {
			opacity: 0;
			transform: translatey(50px);
		}

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

	.scroll-y5 {
		animation-name: fadein2;
		animation-duration: 0.8s;
	}

	.scroll-y6 {
		animation-name: fadein2;
		animation-duration: 1.6s;
	}

	.scroll-y7 {
		animation-name: fadein2;
		animation-duration: 2s;
	}

	@keyframes fadein2 {
		from {
			opacity: 0;
			transform: translatey(-100px);
		}

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


	/**********************************************************************スクロールでフワッと*/

	/**********************************************************************トップ*/
	.top {
		display: flex;
		margin-top: 57px;
		padding: 5%;
		flex-direction: column;
		width: 100%;
	}

	.topimg {
		width: 100%;
		height: auto;
	}

	.top-left {
		margin-right: 0;
		text-align: left;
	}

	h1 {
		text-align: left;
		font-weight: bold;
		font-size: 28px;
		line-height: 1.5em;
	}

	.top-h1>h1 {
		font-size: 24px;
		margin-right: 0px;
	}

	.top-left ul {
		display: block;
		text-align: left;
		margin: 15px 0;
	}

	.top-left ul li {
		text-align: left;
		font-weight: bold;
		padding-left: 20px;
		line-height: 1.6em;
		background: url("../imges/check01.svg") left 0px top 5px no-repeat;
		background-size: 15px auto;
	}

	.sp_min {
		flex-wrap: wrap;
	}

	.icons {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}

	.icons img {
		width: 32%;
	}

	.top-buttons {
		width: 100%;
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
		margin: 20px 0;
	}

	.top-buttons a {
		width: 100%;
	}

	.top-buttons a button {
		width: 100%;
		margin: 8px 0;
	}

	/**********************************************************************トップ*/

	/**********************************************************************EC経営改善*/
	#supplychain {
		background: #F3F8F8;
		padding: 5%;
	}

	#supplychain h1 {
		text-align: center;
		margin: 0 auto 20px;
		line-height: 1.5em;
	}

	#supplychain>.con01 {
		padding: 0;
	}

	.area {
		margin: auto;
		flex-wrap: wrap;
		display: flex;
		justify-content: space-between;
	}

	.tab_class {
		width: 48%;
		height: 50px;
		margin: 10px 0;
		background-color: rgba(255, 255, 255, 0.50);
		line-height: 50px;
		font-size: 15px;
		text-align: center;
		display: block;
		float: left;
		order: -1;
		color: rgba(40, 185, 210, 0.80);
		border-radius: 25px;
	}

	#tab6 {
		margin-right: 0;
	}

	input[name="tab_name"] {
		display: none;
	}

	input:checked+.tab_class {
		background-color: rgba(40, 185, 210, 1.00);
		color: rgba(255, 255, 255, 1.00);
	}


	.content_class>div {
		display: flex;
		flex-direction: column;
		margin-top: 30px;
	}

	.content_class>div>div {
		text-align: left;
	}

	.content_class>div>div>h4 {
		text-align: left;
		font-size: 22px;
	}

	.content_class>div>div>p {
		margin: 20px 0;
		text-align: left;
	}

	.content_class>div>div>a {
		background: #fff;
		padding: 20px;
		border-radius: 10px;
		width: 100%;
		margin-bottom: 20px;
	}

	.content_class>div>img {
		width: 100%;
	}


	.content_class {
		display: none;
		width: 100%;
	}

	input:checked+.tab_class+.content_class {
		display: block;
	}

	/**********************************************************************EC経営改善*/

	/**********************************************************************表*/
	.list {
		padding: 30px 0;
	}

	.list-mob-title {
		background: #F3F8F8;
	}

	.list-mob-title>img {
		width: 90%;
		margin: 0 auto;
	}

	.list>div>hr {
		width: 90%;
	}

	.list-mob-text {
		font-weight: bold;
		margin-top: 10px;
		font-size: 18px;
	}

	.list>div>div {
		display: flex;
		justify-content: flex-start;
		width: 90%;
		margin: 0 auto;
	}

	.list>div>div>a {
		width: 48%;
		margin: 0 2% 5% 0;
		text-align: left;
	}

	/**********************************************************************表*/

	/**********************************************************************EC事業者の主な課題*/
	.theme {
		background: url("../imges/26394192_l.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		padding: 30px 0;
	}

	h2 {
		font-size: 24px;
	}

	.title-theme {
		height: auto;
		width: 100%;
		margin-top: 10px;
	}

	.improvement {
		display: flex;
		flex-direction: column;
	}

	.improvement>div {
		width: 100%;
		border-radius: 10px;
		padding: 15px 30px;
		background: #fff;
		margin-top: 15px;
	}

	.improvement>div>h5 {
		font-size: 24px;
		color: #1E4696;
	}

	.improvement-text {
		font-size: 18px;
		margin-top: 10px;
		font-weight: bold;
	}

	.improvement>div>div {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.improvement div ul {
		display: block;
		text-align: left;
		margin: 15px 0;
	}

	.improvement div ul li {
		text-align: left;
		font-weight: bold;
		padding-left: 20px;
		line-height: 1.6em;
		background: url("../imges/check01.svg") left 0px top 5px no-repeat;
		background-size: 15px auto;
	}

	.improvement>div>div>img {
		width: 100px;
		height: 100px;
	}

	/**********************************************************************EC事業者の主な課題*/


	/**********************************************************************収益改善*/

	.profitability {
		padding: 30px 0;
	}

	.profitability>h1 {
		text-align: center;
		margin-bottom: 30px;
		line-height: 1.5em;
	}

	.profitability>img {
		width: 90%;
		margin: 0 auto;
	}

	/**********************************************************************収益改善*/

	/**********************************************************************SCMの特長*/
	.features {
		padding: 50px 0;
		background: #F3F8F8;
	}

	.title-features {
		width: 90%;
		margin: 0 auto 30px;
	}

	.features>div {
		width: 90%;
		margin: 0 auto;
		padding: 25px;
		background-color: #fff;
		border-radius: 20px;
		text-align: left;
		margin-bottom: 50px;
	}

	.features-title {
		display: inline-block;
		text-align: left;
		font-size: 26px;
		font-weight: bold;
	}

	.features-title img {
		height: 30px;
		width: auto;
		display: inline-block;
	}

	.features>div>div {
		display: flex;
		flex-direction: column;
		text-align: left;
		margin: 30px 0 0;
	}

	.features>div>div>div {
		margin: 0;
	}

	.features>div>div>div>a {
		text-align: left;
		line-height: 2em;
		text-indent: -1em;
		padding-left: 1em;
		font-weight: bold;
	}

	.features>div>div>img {
		width: 100%;
	}

	.point-read {
		text-align: left;
		margin: 20px 0;
		font-size: 18px;
		font-weight: 600;
	}

	.point05 {
		display: flex;
		flex-direction: column;
	}

	.point05>a {
		text-align: left;
	}

	.point05>a:first-child {
		font-weight: bold;
		line-height: 1.5em;
		width: 100%;

	}

	.ill-point2 {
		width: 100% !important;
	}

	.point05-line {
		margin: 20px 0;
	}

	.point05-ast {
		font-size: 16px;
		font-weight: normal !important;
		margin: 15px 0;
		line-height: 1.5em !important;
	}

	.point05>div>img {
		height: 25px;
		width: auto;
		margin-top: 5px;
	}

	.point05>a {
		width: 160px;
		margin: 10px auto;
	}

	.point05-red {
		width: 100%;
		border-radius: 5px;
		background: #C80000;
		color: #fff;
		text-align: center !important;
		margin-top: 5px;
	}

	/**********************************************************************SCMの特長*/
	/**********************************************************************footer*/
	footer {
		padding: 50px 0 100px;
		background-color: #FAFAFA;
		margin-top: 50px;
	}

	.footer-rogo {
		width: 270px;
		margin: 0 auto 50px;
	}

	.footer-text {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.footer-text>div {
		margin-right: 0;
		width: 100%;
	}

	.footer-text div a {
		text-align: left;
		margin-bottom: 5px;
	}

	.company,
	.link-a {
		font-weight: 600;
	}

	.link-a {
		margin-top: 20px;
	}

	.footer-text>div>.link-a:first-child {
		margin-top: 20px;
	}

	.company span,
	.address,
	.copyright,
	.link-b {
		font-size: 14px;
	}

	.footerrogos {
		width: 80%;
		margin: 10px 10%;
	}

	.copyright {
		margin-top: 50px;
	}



	/**********************************************************************footerここまで*/


	/********************************************************************************************************************************下層頁共通用*/

	.top-back {
		background: #F3F8F8;
		margin-top: 57px;
		width: 100%;
	}

	.top-back>.con01 {
		display: flex;
		flex-direction: column;
	}

	.top-back>.con01>img {
		width: 100%;
	}

	.top-back>.con01>div>a {
		text-align: justify;
		width: 100%;
		margin: 20px 0;
	}

	/********************************************************************************************************************************下層頁共通用*/





	.pc {
		display: none !important;
	}


}

/********************************************************************************************************************モバイル用ここまで*/
/**********************************************************************調整用*/
.color-w {
	color: white;
}

.mb50 {
	margin-bottom: 50px;
}

.mt20 {
	margin-top: 20px;
}

.mt50 {
	margin-top: 50px;
}

.mt100 {
	margin-top: 100px;
}

.mt0 {
	margin-top: 0px !important;
}

.mb0 {
	margin-bottom: 0px !important;
}

/* 以下内藤追記 */
/**************************** カスタム *****************************/
.w24 {
	width: 24px;
}

.w32 {
	width: 32px;
}

.w140 {
	width: 140px;
}

.w200 {
	width: 200px;
}

.w400 {
	width: 400px;
}

.w700 {
	width: 700px;
}

.w50p {
	width: 50%;
}

.w70p {
	width: 70%;
}

.w90p {
	width: 90%;
}

.pd0 {
	padding: 0px !important;
}

.p40 {
	padding: 40px;
}

.pb32 {
	padding-bottom: 32px;
}

.pb64 {
	padding-bottom: 64px;
}

.mb64 {
	margin-bottom: 64px;
}

.mt32 {
	margin-top: 32px;
}

.mb32 {
	margin-bottom: 32px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb16 {
	margin-bottom: 16px;
}

.mb8 {
	margin-bottom: 8px;
}

.mr8 {
	margin-right: 8px;
}

.ms8 {
	margin: 0 8px;
}

.pt32 {
	padding-top: 32px;
}

.pb20 {
	padding-bottom: 20px;
}

.flex {
	display: flex;
}

.gap {
	gap: 32px;
}

.gap-10pa {
	gap: 10%;
}

.gap-17pa {
	gap: 17%;
}

.bg {
	background-color: #F3F8F8;
}

.bg-blue {
	background-color: #1E4696;
}

.text-blue {
	color: #2F6EBA;
}

.text-red {
	color: #BE0A3C;
}

.text-white {
	color: #FFFFFF;
}

.text-500 {
	font-weight: 500;
}

.text-600 {
	font-weight: 600;
}

.underline {
	text-decoration: underline;
}

.bg-yellow {
	background-color: #fef9c3;
}

.bg-gray {
	background-color: #e5e7eb;
}

/* レイアウト */
.center {
	text-align: center !important;
}

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

.a-start {
	align-items: start;
}

.left {
	text-align: left;
}

.right {
	text-align: right !important;
}

.mouse-none {
	pointer-events: none;
}

.lh-32 {
	line-height: 32px;
}

.d-inline {
	display: inline;
}

.middle {
	vertical-align: middle;
}

/***************************************** コンポーネント *****************************************/
.bg-white {
	background: #FFFFFF;
	padding: 24px 32px;
	border-radius: 20px;
}

.button-white {
	height: 40px;
	width: 160px;
	background-color: #FFFFFF;
	border-radius: 6px;
	color: #1E4696;
	border: 2px solid #1E4696;
	font-weight: 800;
	font-size: 14px;
	padding: 8px;
	cursor: pointer;
}

.button-sky {
	height: 40px;
	width: 160px;
	color: #FFFFFF;
	font-weight: 600;
	background-color: #28B9D2;
	border-radius: 6px;
	border: none;
	font-size: 14px;
}

.button-navy {
	height: 40px;
	width: 160px;
	color: #FFFFFF;
	font-weight: 600;
	background-color: #1E4696;
	border-radius: 6px;
	border: none;
	font-size: 14px;
	cursor: pointer;
}

.btn-round-white {
	height: 80px;
	width: 216px;
	background-color: #FFFFFF;
	border-radius: 100px;
	color: #E68C00;
	font-size: 16px;
	border: 2px solid #E68C00;
	font-weight: 600;
}

.btn-round-orange {
	height: 80px;
	width: 216px;
	background-color: #E68C00;
	border-radius: 100px;
	color: #FFFFFF;
	font-size: 16px;
	border: none;
	font-weight: 600;
}

.btn-round-blue {
	background-color: #1E4696;
	border-radius: 100px;
	color: #FFFFFF;
	font-size: 16px;
	border: none;
	font-weight: 600;
	padding: 12px 40px;
}

.btn-footer {
	border: 2px solid #1E4696;
	background-color: #FFFFFF;
	border-radius: 100px;
	color: #1E4696;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 40px;
	transition: 0.2s;
}

.btn-footer:hover {
	transform: scale(1.08, 1.08);
	transition: 0.2s;
}

.btn-round-blue-white {
	border: 2px solid #1E4696;
	background-color: #FFFFFF;
	border-radius: 100px;
	color: #1E4696;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 40px;
	transition: 0.2s;
}

.btn-round-blue-white:hover {
	background-color: #1E4696;
	color: #FFFFFF;
}

.summary-white {
	font-weight: 500;
	color: #1E4696;
	text-align: left;
	border: #1E4696 solid 2px;
	border-radius: 4px;
	padding: 8px 16px;
	margin-top: 24px;
}

.summary-skyblue {
	font-weight: 500;
	text-align: left;
	background-color: #E3F0F0;
	border-radius: 4px;
	padding: 8px 24px;
	margin-top: 16px;
}

.summary-cyaan {
	font-weight: 500;
	text-align: left;
	color: #FFFFFF;
	background-color: #28B9D0;
	border-radius: 4px;
	padding: 8px 24px;
	margin-top: 16px;
}

.summary-orange {
	font-weight: 500;
	color: #FFFFFF;
	background-color: #E68C00;
	border-radius: 4px;
	padding: 8px 32px;
}

.reference {
	text-align: right !important;
	margin: 8px 0px !important;
	font-size: 14px;
	font-weight: 500;
}

/* テーブル */
.pure-table {
	width: 100%;
}

.pure-table-wrapper {
	overflow-x: scroll;
	margin: 24px 0px;
}

.pure-table-wrapper::-webkit-scrollbar {
	display: none;
}

th {
	background-color: #F3F8F8;
}

td,
th {
	border: #cbcbcb solid 1px;
	padding: 8px;
	text-align: left;
}

/**************************** ヘッダー ****************************/
.drop-btn {
	height: 40px;
	font-size: 14px;
	width: 160px;
	background-color: #FFFFFF;
	border-radius: 6px;
	color: #1E4696;
	border: 2px solid #1E4696;
	font-weight: 600;
	margin-right: 8px;
}

.header-dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	width: 240px;
	display: none;
	position: absolute;
	right: 0px;
	padding: 16px;
	border-radius: 4px;
	background-color: #F3F8F8;
	color: #1E4696;
	border: #1E4696 2px solid;
	z-index: 1;
	left: 50%;
	transform: translate(-50%);
	width: 100%;
	min-width: 250px;
	padding-bottom: 0;
}

.dropdown-content a {
	padding: 12px 16px;
}

.dropdown-content ul {
	display: block;
}

/* ホバー時にリストを表示する */
.header-dropdown:hover .dropdown-content {
	display: block;
}

.header-dropdown p {
	font-size: 12px;
}

.header-btn {
	margin-bottom: 16px;
	text-align: right;
}

.header-bg {
	background-color: #FFFFFF;
	height: 150px;
}

.rogo-text {
	color: #6b7280;
	font-size: 12px;
	text-align: left;
	margin-bottom: 8px;
}

/**************************** トップ ****************************/
.top-img {
	width: 680px;
	max-width: 100%;
}

.about-eos {
	background-color: #ffffff;
	margin-top: 32px;
	padding: 20px;
	border-radius: 20px;
}

.about-eos img {
	width: 70%;
}

.box>div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1%;
	margin: 32px 0px;
}

.box>div>a {
	width: 24%;
	padding: 12px 16px 24px 16px;
	border-radius: 8px;
	background-color: #FFFFFF;
}

.box>div>a>div {
	font-size: 25px;
	font-weight: 600;
}

.box>div>a>div>img {
	width: 80%;
	object-fit: contain;
	height: 40px;
}

.tab-video {
	width: 855px;
	max-width: 100%;
}

.con01.area {
	Justify-content: center;
	margin-top: 32px;
}

.eos-solution {
	width: 600px;
	margin-top: 20px;
	max-width: 100%;
}

.eos-effect {
	color: #FFFFFF;
	width: 240px;
	position: relative;
	background-color: #28B9D2;
	border-radius: 4px;
	padding: 8px;
	margin: -32px auto 0px auto;
}

.eos-effect-container {
	margin: 48px auto;
	border: 1px solid #28B9D2;
	border-radius: 4px;
	padding: 8px;
	width: 80%;
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, auto);
	margin: 40px 10%;
	gap: 16px 48px;
}

.grid li {
	text-align: start;
	align-items: center;
	display: flex;
}

.eos-effect-text {
	color: #111827;
}

.eos-effect-subtitle {
	margin: 0px auto;
	color: #28B9D2;
	font-weight: 600;
}

.check {
	width: 20px;
	margin-right: 8px;
	margin-top: 4px;
}

.ill-feature {
	width: 120px;
	margin-right: 20px;
	margin-bottom: 20px;
}

.h1-blue {
	color: #2F6EBA;
	text-align: center;
	margin-bottom: 20px;
}

.story p {
	text-align: left;
	margin-bottom: 24px;
}

.story img {
	width: 320px;
	margin-bottom: 24px;
}

.story .left {
	width: 320px;
	text-align: center;
	margin-right: 32px;
}

.support {
	margin: 24px 0px;
}

.support img {
	width: 90%;
}

.bg.notice {
	padding-top: 64px;
}

.notice {
	padding-bottom: 24px;
}

.notice ul {
	display: block;
	width: 100%;
}

.notice li {
	text-align: left;
	align-items: center;
	margin: 0 100px;
	border-bottom: 1px solid #D1D5DB;
}

.notice span {
	margin: 20px 20px;
}

.bg.features-box {
	padding: 0px 30%;
}

.features-head {
	text-align: center;
	align-items: center;
}

.link-btn .button-white {
	width: 440px;
	height: auto;
	font-weight: 500;
	font-size: 16px;
	text-align: center;
	padding: 6px;
	margin: 16px auto;
	transition: .2s;
	max-width: 100%;
}

.link-btn .button-white:hover {
	background-color: #1E4696;
	color: #FFFFFF;
}

.point5 {
	width: 50%;
}

.point-img {
	width: 80%;
	text-align: center;
	margin: 16px 10%;
}

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

	.box>div>a {
		width: calc(50% - 8px);
		margin: 8px 0;
	}

	.point5 {
		width: 100%;
	}

	.eos-effect-container {
		width: 100%;
	}

	.eos-effect-container .grid {
		gap: 16px 12px;
		margin: 40px 4%;
	}

	.story .left {
		width: 100%;
		margin: 0 auto 24px;
	}

	.notice li {
		margin: 16px 0;
	}
}

/**************************** コマースロボとは ****************************/
.top.about-commerce-robo {
	background: url(../imges/crobo-bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 30px 100px;
	align-items: center;
	justify-content: center;
}

.crobo-feature .summary-orange,
.eos-feature .summary-orange {
	width: 160px;
	margin: 16px auto 0px auto;
}

.crobo-feature dd {
	height: 216px;
}

.flex-item {
	border: #1E4696 solid 1px;
	flex-basis: 100%;
}

.flex-item dt {
	margin-bottom: 16px;
	font-size: 18px;
	font-weight: bold;
}

.problem {
	width: 80%;
	text-align: center;
}

.btn-group .button-white,
.btn-group .button-navy {
	width: 280px;
	height: 48px;
	font-size: 16px;
}

.hbspt-form {
	background: #FFFFFF;
	padding: 24px;
	width: 400px;
	border-radius: 8px;
}

.actions {
	margin: 0px;
	padding: 0px;
}

/**************************** EOSとは ****************************/
.top.eos-bg {
	background: url(../imges/eos-bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 30px 100px;
	align-items: center;
	justify-content: center;
}

.eos-list .bg-white {
	padding: 24px 100px;
}

.eos-list .button-white {
	width: 60%;
}

/**************************** コラム、ニュース ****************************/
.contents {
	width: 400px;
}

.colum-img {
	width: 360px;
}

/**************************** コラム本文 ****************************/
.colum-body {
	max-width: 50%;
	margin: 0px auto 64px auto;
}



.colum-body h1 {
	text-align: center;
	margin: 32px 0;
}

.colum-body h2 {
	text-align: left;
	margin-top: 32px;
}

.colum-body h3 {
	font-size: 20px;
	color: #3C4141;
	margin-top: 20px;
}

.colum-body p {
	text-align: left;
	margin: 16px 0px;
}

.topic {
	margin: 32px 0px;
	padding: 24px 64px;
	display: inline-block;
	border: double 5px #1E4696;
	min-width: 500px;
}

.topic span {
	font-size: 20px;
	font-weight: 600;
}

.topic li {
	margin: 16px 0px;
	color: #1E4696;
	text-align: left;
}

/**************************** FAQ ****************************/
.faq-body {
	max-width: 50%;
	margin: 0px auto 64px auto;
}

.qa-container {
	border-bottom: 1px dotted #9ca3af;
}

/**************************** 料金 ****************************/
/* .seminar3-cta-btn a {
    line-height: 50px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    font-weight: 600;
} */
/*index.htmlのニュース*/
.news-text {
	margin: 10px 0 0 0;
}

.news-text:hover {
	color: #0f4abe;
	transform: scale(1.03);
	transition: all 0.7s;
}

/**************************** ニュース ****************************/
.contents-h2 {
	margin: 32px auto;
}

.news-date {
	color: rgba(60, 65, 65, .75);
	font-weight: 600;
	text-align: left;
	margin: 10px 0 0 15px;
	display: flex;
	align-items: center;
	line-height: 24px;
}

.news-date::before,
.useful-date::before {
	content: "\f017";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 6px;
}

/**************************** セミナー詳細 ****************************/
.img-teacher {
	width: 36%;
}

.h2-seminar {
	padding: 8px 0 8px 20px;
	border-left: 4px solid #1E4696;
	background: #F7F7F7;
	font-size: 16pt;
}

.seminar-icon,
.news-icon,
.video-icon,
.story-icon {
	display: inline-block;
	padding: 1px 4px;
	border-radius: 2px;
	color: #fff;
	margin-left: 8px;
	font-size: 10px;
}

.seminar-icon {
	background: #BE0A3C;
}

.news-icon {
	background: #002DBF;
}

.video-icon {
	background: #0ABF20;
}

.story-icon {
	background: #e65a00;
}

.news-h2 {
	margin: 0 15px 15px;
	text-align: left;
	font-size: 20px;
	font-weight: 500;
}

/* seminer-detail.html */
.seminar-section {
	width: 50%;
	margin: 0 auto;
}

.seminar-section h1 {
	text-align: center;
}

.seminar-back p {
	text-align: right !important;
}

.seminar-hero-20231013 {
	margin: auto;
	width: 600px;
}

.seminar-cta-position {
	margin: 20px auto;
	width: 320px;
}

.seminar-cta-blue a {
	width: 320px;
	text-decoration: none;
	color: white;
	background-color: #002DBF;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	padding: 8px;
}

.campaign-div img {
	max-width: 600px;
	margin: 20px auto;
}

/**************************** フォームcontact-paid. contact. ****************************/
.top {
	display: flex;
	padding-top: 10px;
	align-items: flex-start;
}

@media screen and (max-width: 640px) {
	.top {
		display: flex;
		padding: 70px 5% 0;
		flex-direction: column;
		width: 100%;
	}
}

.answer {
	display: flex;
	justify-content: space-between;
}

.answer>div {
	width: 48%;
	padding: 20px 40px;
	background: #fff;
	border-radius: 10px;
}

.answer>div>div {
	display: flex;
	justify-content: space-between;
}

.answer>div>div>img {
	width: 136px;
}

.answer>div>h4 {
	color: #BE0A3C;
	font-size: 22px;
}

.answer>div>div>ul {
	display: block;
	text-align: left;
	margin: 15px 0;
}

.answer>div>div>ul li {
	text-align: left;
	padding-left: 20px;
	line-height: 1.6em;
	background: url("../imges/check01.svg") left 0px top 5px no-repeat;
	background-size: 15px auto;
}

.answer h1 {
	text-align: center;
}

.inquiry-request h1 {
	margin: 30px auto;
}

.scroll-y {
	animation-name: fadein;
	animation-duration: 0.8s;
}

.scroll-y2 {
	animation-name: fadein;
	animation-duration: 1.3s;
}

.scroll-y3 {
	animation-name: fadein;
	animation-duration: 1.6s;
}

.scroll-y4 {
	animation-name: fadein;
	animation-duration: 2s;
}

.document-request-container {
	display: block !important;
	padding: 30px;
	border: 2px solid #1E4696;
	margin-top: 30px;
}

.inquiry-request h1 {
	margin: 30px auto;
}

.answer02 h2 {
	margin: 30px auto;
}

.document-request h2 {
	margin: 0 auto 30px;
	color: #BE0A3C;
}

.document-request-container ul li {
	text-align: left;
	padding-left: 20px;
	line-height: 1.6em;
	background: url("../imges/check01.svg") left 0px top 5px no-repeat;
	background-size: 15px auto;
}

.free-plan {
	width: 60%;
	margin: auto;
}

.free-plan h1 {
	text-align: center;
	margin: 30px auto;
}

.price-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center !important;
}

.price-flex img {
	padding: 30px 0 0 0;
	width: 100% !important;
}

.price-flex h2 {
	color: #BE0A3C;
}

.price-flex small {
	padding: 15px;
}

.price-flex a {
	text-align: right;
	padding: 15px;
}

.inquiry-explain {
	margin-top: 30px;
	text-align: left;
}

.normal-form .hbspt-form {
	width: 100%;
}

/*-------system_kiyaku-------------*/
.section-otoiawse {
	background: aliceblue;
	width: 90%;
	margin: 0 auto;
}

.section-otoiawse small {
	color: #FF4300;
}

.radius-maru30 {
	border-radius: 30px;
	padding: 50px 0;
	margin: 0px 0 50px 0;
	text-align: left;
}

.margin-kiyaku {
	width: 75%;
	margin-right: 100px;
	margin-left: 100px;
	margin-top: 40px;
	margin-bottom: 0px;
}

.margin-kiyaku p {
	text-align: left;
}

.text-left {
	text-align: left !important;
}

@media (max-width: 480px) {
	.margin18 {
		text-align: center;
		margin-right: 8px;
		margin-left: 8px;
		margin-top: 4px;
		margin-bottom: 8px;
	}
}

/* .h2_back {
    margin-top: 20px;
    padding: 15px 0 15px 20px;
    border-left: 5px solid #74B1D6;
    background: #F7F7F7;
}
.seminar-ee-p{
	font-family: "Noto Sans JP", sans-serif;
	text-align: left;
	} */
/* .teacher-info-total {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 70px auto 0 auto;
	width: 70%;
}
.teacher-info-left {
    width: 50%;
}
.teacher-img {
    width: 100%;
    margin: 20px auto 0 auto;
}
.teacher-img img{
	width: 45%;
}
.teacher-moji{
	color: #0333ce;
	font-size: 20px;
	font-family: "notsan";
	text-align: center;
}
.teacher-info-right{
    width: 50%;
	margin: 0 auto;
}
.teacher-name{
    text-align: left;
	margin: 0 auto;
	width: 90%;
} */

/*--------サンクスページ-------*/
.colum-body.thanks {
	min-height: 60vh;
	display: flex;
	flex-flow: column;
	justify-content: center;
	max-width: none;
	flex-wrap: wrap;
}


.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background: #0055AA;
	max-width: 400px;
	margin: 32px auto;
	height: 56px;
	border-radius: 32px;
	opacity: 1;
	transition: .3s ease;
}

.btn:hover {
	opacity: .7;
	transition: .3s ease;
}