@charset "utf-8";

:root {
	--bg-color: #CCEAFF;
	--accent-color: #22459D;
	--text-color: #182340;
	--accent-bg-text-color: #fff;
	--title-color: #22459D;
	--subtitle-color: #000;
	--title-bg-color: #fff;
	--button-bg-color: #000000;
	--button-text-color: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
/*normarize*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}
/* tag */
html{
	scroll-padding-top: 70px;
}
body {
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	/*font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;*/
	color: var(--text-color);
	font-optical-sizing: auto;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
  	font-style: normal;
}
main {
	overflow: hidden;
	background: rgb(255,255,255);
	background: linear-gradient(100deg, rgba(255,255,255,1) 0%, rgba(246,252,255,1) 22%, rgba(200,233,252,1) 61%);
}
a {
	color: var(--accent-color);
	text-decoration: none;
}
a:hover {
	opacity: 0.7;
}

i{
	font-style: italic;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

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

img {
	max-width: 100%;
}
.sp_only{
	display: none!important;
}

.cf:after {
	content: '';
	clear: both;
	display: block;
}
section{
	padding: 60px 0;
	position: relative;
	z-index: 0;
	scroll-padding-top:80px;
}
section.blue{
	z-index: 1;
	background: var(--accent-color);
	color: white;
	margin-top: 120px;
}

.wrapper {
	max-width: 1100px;
	position: relative;
	margin: auto;
}
@media screen and (max-width:1100px) {
	.wrapper{
		padding: 0 20px;
	}
}

@media screen and (max-width:767px) {
	.sp_only{
		display: inline!important;
	}
	.flex.sp_only{
		display: flex!important;
	}
	.pc_only{
		display: none!important;
	}
	body {
		font-size: 14px;
	}
	main {
		background: linear-gradient(92deg, rgba(255,255,255,1) 0%, rgba(246,252,255,1) 10%, rgba(200,233,252,1) 61%);
	}
	section{
		padding: 40px 0 0 0;
	}
	.wrapper {
		padding: 0 10px;
	}
	section.blue{
		margin-top: 80px;
	}
}

p{
	padding-bottom: 1em;
}

section h2 {
	font-size: 100px;
	margin: 0 0 0px 0;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-style: italic;
	color:#7B99CD;
	text-align: center;
	letter-spacing: -0.04em;
	width: 100%;
}
section.blue h2{
	position: absolute;
	top: -117px;
	left: 50%;
	transform: translateX(-50%);
}

h3{
	font-size: 48px;
	margin: 0 0 10px 0;
}
p.sub{
	font-size: 24px;
	text-align: center;
}
@media screen and (max-width:767px) {
	section h2 {
		font-size: 58px;
		margin-bottom: 10px;
	}
	section.blue h2{
		top: -67px;
	}
	h3{
		font-size: 40px;
	}
	p.sub{
		font-size: 14px;
	}
}
strong {
	font-weight:700;
}
.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex.reverse{
	flex-flow: row-reverse;
	flex-wrap: wrap;
}
.flex .txt{
	width: 58%;
}
.flex .ph{
	width: 38%;
}

.flex .ph img{
	margin-bottom: 10px;
}
p.small{
	font-size: 0.9em;
}
.all .ph{
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.all .ph img{
	width: 49%;
}
@media screen and (max-width:767px) {
	.flex .txt,
	.flex .ph{
		width: 100%;
	}
	.all .ph img{
		width: 100%;
		margin-top: 20px;
	}
}



/* header */
#top-head {
	position: fixed;
	width: 100%;
	margin: 0 auto;
	height: 57px;
	background:var(--bg-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 100;
}
#top-head > div{
	width: 100%;
	max-width: 1100px;
	margin: auto;
}
#toc{
	display: flex;
}
#toc > ul {
	display: flex;
	align-items: center;
	font-size: 14px;
	width: 80%;
}
#toc > ul > li {
	margin-right: 60px;
	font-weight: 700;
}
#toc > ul > li a:hover{
	text-decoration: none;
	color:#000;
}
/*#toc a:hover {
	text-decoration: none;
	opacity: 0.7;
}*/
#toc > div.inq{
	width: 20%;
	text-align: right;
}
a.button.inq{
	background: #000;
	display: inline-block;
	padding: 8px 30px;
	color: white;
	border-radius: 40px;
	font-weight: 700;
	letter-spacing: 0.4em;
	white-space: nowrap;
}
a.button.inq:hover{
	background: var(--accent-color);
	opacity: 1;
}

@media screen and (max-width:767px) {
/* header */
#top-head {
	height: 47px;
	display: block;
}
#top-head > div {
	height: 47px;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0 10px;
	display: flex;
	justify-content: space-between;
}
.inq.sp_only{
	display: flex!important;
	width: 50%;
	position: relative;
	z-index: 9999;
	height: 100%;
	align-items: center;
	padding-left: 10px;
}
  /*開閉ボタン*/
  #nav_toggle{
	display: block;
	width: 30px;
	height: 20px;
	position: relative;
	top: 12px;
	z-index: 100;
}
#nav_toggle div {
	position: relative;
}
#nav_toggle span{
	display: block;
	height: 2px;
	background: #22459D;
	position:absolute;
	width: 100%;
	left: 0;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;	
}
#nav_toggle span:nth-child(1){
	top:0px;
}
#nav_toggle span:nth-child(2){
	top:10px;
}
#nav_toggle span:nth-child(3){
	top:20px;
}

/*開閉ボタンopen時*/
.open #nav_toggle span{
}
.open #nav_toggle span:nth-child(1) {
	top: 12px;
   -webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
}
.open #nav_toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav_toggle span:nth-child(3) {
	top: 12px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
#toc{
	display: none;
    position: fixed;
    top: 0px;
    width: 100%;
	height: 100%;
    left: 0;
}
#toc > ul {
	position: relative;
	top: 0;
	/*right: -100vw;*/
	transition: right 0.3s;
	width: 100vw;
	background-color:#E4F2FF;
	z-index: 999;
	height:100vh;
}
#toc-toggle:checked ~ #toc > ul {
	right: 0;
	height: 100vh;
}
#toc > ul {
	display: block;
	padding-top: 55px;
}
#toc > ul > li {
	display: block;
	margin: 20px 0;
}
#toc a {
	display: block;
	padding: 10px 0;
	text-align: center;
	font-size: 24px;
	color: var(--accent-color);
}
}

/* footer */
#footer {
	font-size: 14px;
	color: var(--accent-color);
	padding: 20px 0 40px 0;
}
#footer > .wrapper {
	text-align: center;
}
#copyright {
	position: relative;
	padding: 20px 0;
}
#copyright small {
	display: block;
	font-size: 14px;
}
#page-top {
	position: fixed;
	right: 74px;
	bottom: 74px;
	width: 54px;
	height: 54px;
	border-radius: 27px;
	z-index: 10;
	display: none;
}
#page-top:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 52px;
	height: 52px;
	border: solid 1px #CE1414;
	border-radius: 27px;
	background: #fff;
	opacity: 0.6;
}
#page-top:after {
	content: '';
	display: block;
	width: 11px;
	height: 11px;
	border-top: solid 2px transparent;
	border-right: solid 2px #CE1414;
	border-bottom: solid 2px #CE1414;
	border-left: solid 2px transparent;
	position: absolute;
	top: 24px;
	left: 50%;
	transform: translateX(-50%) rotate(-135deg);
}

@media screen and (max-width:767px) {
	#page-top {
		right: 10px;
		bottom: 10px;
	}
}

/* top */
#top-mv {
	position: relative;
	margin-top: 57px;
}
#top-mv > div.wrapper{
	/*background: url(../img/main.webp) no-repeat center right/50%;*/
	height: 100%;
	position: relative;
	padding: 20px 0 10px 0;
	/*display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;*/
}
#top-mv > div.wrapper img.mainv.pc_only{
	width: 53%;
	aspect-ratio:4/3.5;
	object-fit: contain;
	position: absolute;
	top: 50px;
	right: 0;
}
#top-mv > div.wrapper h2{
	font-size: 58px;
	color: var(--accent-color);
	line-height: 1.2em;
	margin-bottom: 20px;
	letter-spacing: -0.04em;
}
#top-mv > div.wrapper h2 span{
	font-size: 26px;
	color: var(--text-color);
	display: block;
	letter-spacing: 0;
}
#top-mv > div.wrapper h2 span strong{
	font-weight: 700;
}
#top-mv > div.wrapper .txt{
	width: 56%;
}
#top-mv > div.wrapper .txt p{
	width: 90%;
	line-height: 1.8em;
	padding-bottom: 3.5em;
}
#top-mv > div.wrapper div.start{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: -10px;
	right: 0;
	border-radius: 50%;
	width: 130px;
	height: 130px;
	background: white;
	color: var(--accent-color);
	text-align: center;
	line-height: 1.4em;
	font-size: 24px;
}
#top-mv > div.wrapper a.button{
	
	text-align: center;
	font-weight: 700;
	letter-spacing: 0.4em;
}
#top-mv > div.wrapper div.start strong{
	font-size: 40px;
}
#top-mv > div.wrapper div.start small{
	font-size: 16px;
}
@media screen and (max-width:767px) {
	#top-mv > div.wrapper{
		padding: 0 20px;
	}
	#top-mv > div.wrapper img.mainv.sp_only{
		width: 90%;
		display: block!important;
		margin: auto;
	}
	#top-mv > div.wrapper h2{
		font-size: 40px;
		margin: 0 -10px;
	}
	#top-mv > div.wrapper h2 span{
		font-size: 20px;
	}
	#top-mv > div.wrapper h2 > strong{
		letter-spacing: -0.09em;
        transform: scale(0.93, 1);
        transform-origin: top left;
        display: inline-block;
        width: 130%;
	}
	#top-mv > div.wrapper h2 strong small.ls{
		letter-spacing: -0.2em;
		display: inline-block;
	}
	#top-mv > div.wrapper .txt{
		width: 100%;
	}
	#top-mv > div.wrapper .txt p{
		width: 100%;
		padding-bottom: 1.5em;
	}
	#top-mv > div.wrapper div.start{
		bottom: auto;
		right: auto;
		top: 200px;
		left: 10px;
		width: 96px;
		height: 96px;
		font-size: 16px;
		font-weight: bold;
	}
	#top-mv > div.wrapper div.start strong{
		font-size: 30px;
	}
	#top-mv > div.wrapper div.start small{
		font-size: 14px;
		display: inline-block;
		padding-bottom: 3px;
		font-weight: normal;
	}
	#top-mv > div.wrapper a.button{
		display: block;
		margin: auto;
		max-width: 16em;
		font-weight: 700;
		padding: 10px 20px;
	}
}
#intro{
	padding-top: 20px;
}
#intro h3{
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: var(--accent-color);
	padding-bottom: 10px;
}
#intro ul.flex li{
	width: 24%;
	background-color: var(--bg-color);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	color: var(--accent-bg-text-color);
	padding: 30px 10px;
	border-radius: 16px 0 16px 0;
	transform:skewX(-5deg);
	overflow: hidden;
}
#intro ul.flex li:before{
	font-family: "Inter", sans-serif;
	color: rgb(255 255 255 / 60%);
	transform:skewX(-5deg);
	font-size: 310px;
	position: absolute;
	line-height: 0.7;
	left:-30px;
	top: 0;
	font-weight: 400;
}
#intro ul.flex li:nth-of-type(1):before{
	content: "1";
}
#intro ul.flex li:nth-of-type(2):before{
	content: "2";
}
#intro ul.flex li:nth-of-type(3):before{
	content: "3";
}
#intro ul.flex li:nth-of-type(4):before{
	content: "4";
}
#intro ul.flex li .title{
	transform:skewX(5deg);
	font-size: 24px;
	text-align: center;
	font-weight: 700;
	padding-bottom: 10px;
	color: var(--accent-color);
}
#intro ul.flex li p{
	transform:skewX(5deg);
	padding-bottom: 0;
	padding: 0 5px;
	color: var(--accent-color);
}
@media screen and (max-width:767px) {
	#intro{
		padding-bottom: 20px;
	}
	#intro ul.flex li{
		width: 100%;
		margin-bottom: 10px;
	}
	#intro ul.flex li:before{
		font-size: 80px;
		left: 3px;
	}
}

#about1{
	padding: 60px 0 0 0;
}
#about1 .img1,
#about1 .img2{
	width: 25%;
	text-align: center;
}
#about1 .img1 img,
#about1 .img2 img{
	aspect-ratio:4/3.1;
	object-fit: contain;
}
#about1 h3{
	width: 50%;
	text-align: center;
	font-size: 24px;
	color: var(--subtitle-color);
}
#about1 h3 strong{
	display: block;
	font-size: 30px;
	padding: 25px 0;
	color: var(--subtitle-color);
}
#about1 h3 span{
	color: var(--subtitle-color);
}
@media screen and (max-width:767px) {
	#about1{
		padding: 0px 0;
	}
	#about1 .img1,
	#about1 .img2{
		display: none;
	}
	#about1 h3{
		width: 100%;
		font-size: 16px;
		font-weight: 700;
		color: var(--subtitle-color);
	}
	#about1 h3 strong{
		font-size: 24px;
		padding: 10px 0;
		line-height: 1.4em;
	}
	#about1 h3 span{
		font-weight: 400;
	}
}

.about2{
	padding: 30px 100px;
	border-radius: 16px 0 16px 0;
	transform:skewX(-5deg);
	background:rgb(255 255 255 / 60%);
}
.about2 h3{
	transform:skewX(5deg);
	font-size: 30px;
	text-align: center;
	color: var(--title-color);
	padding-bottom: 20px;
	font-weight: bold;
}
.about2 .flex{
	transform:skewX(5deg);
	align-items: center;
}
.about2 .flex .img{
	width: 250px;
	text-align: center;
}
.about2 .flex .img img{
	width: 100%;
	border-radius: 50%;
	display: block;
	margin: auto;
}
.about2 .flex .txt{
	width: calc(100% - 300px);
}
.about2 .flex .txt p.name{
	font-size: 14px;
	line-height: 1.5em;
	width: 100%;
}
.about2 .flex p.name strong{
	font-size: 20px;
	display: inline-block;
	padding-top: 5px;
}
.about2 .flex .img p.name{
	display:none;
}
.about2 .flex p{
	line-height: 1.8em;
}
@media screen and (max-width:767px) {
	#about2{
		padding-top: 20px;
	}
	.about2{
		padding: 20px;
		transform:skewX(0deg);
		background:rgb(255 255 255 / 60%);
	}
	.about2 h3,
	.about2 .flex{
		transform:skewX(0deg);
	}
	.about2 h3{
		font-size: 24px;
		font-weight: 700;
		text-align: center;
		padding-bottom: 10px;
	}
	.about2 .flex{
		flex-direction: column-reverse;
	}
	.about2 .flex .img{
		width: 100%;
	}
	.about2 .flex .img img{
		margin: auto;
		display: block;
		width: 70%;
	}
	.about2 .flex .img p.name{
		display: block;
		line-height: 1.5em;
		padding-top: 10px;
		text-align: center;
		font-size: 12px;
	}
	.about2 .flex .txt{
		width: 100%;
	}
	.about2 .flex p.name{
		text-align: right;
	}
	.about2 .flex p.name strong{
		font-size: 18px;
		display: block;
		padding-top: 5px;
	}
}
#about3{
	padding: 50px 0 120px 0;
}
#about3:before,
#about3:after{
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	height: 58px;
	top: -30px;
	left: 50%;
	background: var(--accent-color);
}
#about3:before{
	top: auto;
	bottom: 0px;
}
#about3 h4{
	font-size: 24px;
	color: var(--accent-color);
	text-align: center;
}
.assignment{
	background: url(../img/assignment.webp) no-repeat right center/40%;
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.assignment1,
.assignment2{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 40px 30px;
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(201,234,252,0.3) 70%, rgba(201,234,252,0) 100%);
	position: relative;
	min-height: 176px;
	margin-bottom: 20px;
}
.assignment1:before,
.assignment2:before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -60px;
	clip-path: polygon(100% 0, 68% 100%, 100% 100%);
	background: rgba(255,255,255,1);
	width: 60px;
	height: 100%;
}
.assignment .lead{
	font-size: 24px;
	padding-right: 60px;
	font-weight: 700;
}
.assignment ul{
	list-style-type: none;
	padding-right: 30px;
}
.assignment ul li{
	margin: 0.3em 0;
	position: relative;
}
.assignment ul li:before{
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	left: -0.7em;
	top: 0.7em;
	background: #000;
}
#about3 .next{
	font-size: 24px;
	color: var(--accent-color);
	text-align: center;
}

@media screen and (max-width:767px) {
	#about3{
		padding: 120px 0 20px 0;
	}
	#about3:before,
	#about3:after{
		height: 40px;
		top: 40px;
	}
	#about3:before{
		display: none
	}
	#about3:before{
		bottom: 0px;
	}
	#about3 h4{
		font-size: 20px;
		text-align: center;
	}
	.assignment{
		background-position: center bottom;
		background-size: 90%;
		padding: 20px 0 150px 20px;
		display: block;
	}
	.assignment1,
	.assignment2{
		display: block;
		width: 100%;
		padding: 10px 0 20px 0;
		min-height: auto;
	}
	.assignment1:before{
		left: -40px;
		width: 40px;
	}
	.assignment ul{
		margin-left: 2em;
	}
	.assignment .lead{
		font-size: 20px;
		text-align: center;
		padding: 0;
	}
	#about3 .next{
		font-size: 20px;
		padding-top: 20px;
	}
}

#service,
#case{
	padding-top: 60px;
	margin-top: -60px;
}

#service-wrap{
	padding-bottom: 20px;
}
#service-wrap h3{
	text-align: center;	
	font-size: 24px;
	font-weight: bold;
}
div.flow{
	position: relative;
	font-family: "Inter", sans-serif;
	font-size: 24px;
	line-height: 1em;
	padding-bottom: 5px;
	margin-bottom: 20px;
	font-style: italic;
}
div.flow::first-letter{
	font-size: 40px;
}
div.flow:after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: -10px;
	width: 100%;
	height: 7px;
	transform:skewX(65deg);
	border-bottom: 1px solid var(--bg-color);
	border-right: 2px solid var(--bg-color);
}

@media screen and (max-width:767px) {
	#service-wrap .wrapper{
		padding: 0 10px;
	}
	#service-wrap h3 strong{
		display: block;
		line-height: 1.2em;
	}
	div.flow{
		text-align: center;
	}
	div.flow:after{
		display: none;
	}
}
.month{
	padding: 40px 0 60px 0;
}
.month h4{
	font-size: 20px;
	padding-bottom: 10px;
	font-weight: 700;
}
.month img{
	border-radius:16px 0 16px 0;
	margin-bottom: 20px;
	aspect-ratio:4/2.5;
	object-fit: cover;
}
.month1{
	width: 49%;
}

.month1 p,
.month2 p,
.month3 p{
	line-height: 2;
}

.month1 .flex > div{
	width: 47%;
}
.month2,
.month3{
	width: 23%;
}
p.att{
	font-size: 14px;
}
@media screen and (max-width:767px) {
	.month1,
	.month1 .flex > div,
	.month2,
	.month3{
		width: 100%;
	}
	.month{
		border-left: 2px solid var(--bg-color);
		border-right: 2px solid var(--bg-color);
		padding: 20px 15px 10px 15px;
		position: relative;
		margin-top: 10px;
	}
	.month1{
		border-top: 2px solid var(--bg-color);
	}
	.month .flex > div > div{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		flex-direction: row-reverse;
		align-items: flex-start;
	}
	.month .flex > div > div img{
		aspect-ratio: 3 / 3;
        width: 38%;
        display: block;
        position: relative;
	}
	.month .flex > div> div img.contain{
		object-fit: contain;
		background: white;
	}
	.month .flex > div > div p{
		width: 58%;
	}

	.month1 .flex > div:first-of-type{
		padding-bottom: 20px;
	}
	.month img{
		margin-bottom: 10px;
	}
	.month:before,
	.month:after{
		content: "";
		width: 51%;
		height: 2px;
		background: var(--bg-color);
		position: absolute;
		bottom: -13px;
	}
	.month:before{
		left: -2px;
		transform: rotate(8deg);
	}
	.month:after{
		right: -2px;
		transform: rotate(-8deg);
	}
	.month2,
	.month3{
		padding-top: 40px;
	}
	.month3{
		border-bottom: 2px solid var(--bg-color);
		margin-bottom: 20px;
	}
	.month3:before,
	.month3:after{
		display: none;
	}
}


#benefit .flex > ul li{
	position: relative;
	margin-bottom: 1.5em;
	display: flex;
	align-items: center;
	padding-left: 50px;
}
#benefit .flex > ul li:before{
	content: "";
	display: inline-block;
	width: 35px;
	height: 34px;
	background: url(../img/check.svg) no-repeat center center/100%;
	margin-right: 1em;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
@media screen and (max-width:767px) {
	#benefit .flex > ul li{
		padding-left: 32px;
		font-size: 14px;
		margin-bottom: 1.5em;
	}
	#benefit .flex > ul li:before{
		width: 27px;
		height: 26px;
	}
}

/*usecase study*/
#usecase .flex>div{
	width: 23%;
}
#usecase .flex>div h3{
	font-size: 24px;
	text-align: center;
}
#usecase .flex>div img{
	display: block;
	margin:20px  auto;
	max-width: 75px;
}

@media screen and (max-width:767px) {
	#usecase .flex{
		padding-top: 20px;
	}
	#usecase .flex>div{
		width: 100%;
		padding-bottom: 20px;
	}
	#usecase .flex>div h3{
		padding-bottom: 5px;
	}
	#usecase .flex>div > div{
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		align-items: flex-start;
	}
	#usecase .flex>div > div img{
		width: 15%;
        margin: 0 auto;
	}
	#usecase .flex>div > div p{
		width: 66%;
		padding-left: 5px;
	}
}

/*plan study*/
#plan h2{
	padding-bottom: 30px;
}
div.price > div{
	width: 24%;
	border-radius: 16px 3px;
	background: rgb(255 255 255 / 60%);
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px 10px;
	text-align: center;
	font-weight: 700;

}
div.price .first-title{
	background: var(--accent-color);
	color: var(--accent-bg-text-color);
	border-radius: 16px;
}
div.price .first-title p{
	font-weight: bold;
	text-align: center;
	padding-bottom: 0;
}
div.price .first-title p strong{
	font-weight: bold;
	font-size: 24px;
}
div.price .first-title p.title{
	font-size: 24px;
	padding-bottom: 1em;
}
div.price .first-title p.title strong{
	font-size: 30px;
}
div.price > div h3{
	font-size: 30px;
	font-family: "Inter", sans-serif;
	font-style: italic;
	font-weight: 400;
	margin-bottom: 0px;
	width: 100%;
}
div.price > div .base-price{
	position: relative;
}
div.price > div .base-price:after{
	content: "";
	width: 150px;
	height: 5px;
	background: var(--accent-color);
	position: absolute;
	top: 50%;
	left: -20%;
	transform: rotate(20deg);
}
div.price > div .base-price strong{
	font-size: 50px;
}
div.price > div .special-price{
	font-size: 24px;
	position: relative;
	line-height: 1em;
	padding: 40px 0 10px 0;
}
div.price > div .special-price:before{
	content: "";
	display: block;
	width:0;
	height:0;
	border-style:solid;
	border-width: 16px 9.5px 0 9.5px;
	border-color: var(--accent-color) transparent transparent transparent;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
}
div.price > div .special-price span{
	color: var(--accent-color);
}
div.price > div .special-price strong{
	font-size: 74px;
}
div.price p.att{
	font-weight: 400;
	padding-bottom: 0;
	padding-top: 20px;
	line-height: 1.4em;
}
.recommend{
	position: relative;
	border: 5px solid var(--accent-color);
}
.recommend div.rec-plan{
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent-color);
	text-align: center;
	display: block;
	padding: 10px 0px;
	width: 80%;
	font-weight: 700;
	border-radius: 16px 3px;
	color: white;
}
div.price p{
	text-align: right;
	padding: 20px 0;
	width: 100%;
}

@media screen and (max-width:767px) {
	#plan h2{
		padding-bottom: 20px;
	}
	div.price > div{
		width: 100%;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
		margin-bottom: 20px;
	}
	div.price .first-title{
		background:none;
		color: var(--accent-color);
		border-radius: 16px;
		padding: 0 0 20px 0;
		margin-bottom: 0;
	}
	div.price .first-title p.title{
		font-size: 32px;
		padding-bottom: 10px;
	}
	div.price .first-title p{
		font-size: 24px;
		line-height: 1.4em;
	}
	div.price .first-title p strong{
		font-size: 32px;
	}
	div.price > div .base-price{
		margin-top: 20px;
	}
	div.price > div .base-price:after{
		width: 110px;
		height: 5px;
		background: var(--accent-color);
		position: absolute;
		top: 50%;
		left: -10%;
		transform: rotate(20deg);
	}
	div.price > div .special-price{
		padding-left: 2em;
	}
	div.price > div .special-price:before{
		content: "";
		border-width: 9.5px 0 9.5px 18px;
		border-color: transparent transparent transparent var(--accent-color) ;
		position: absolute;
		top: 40%;
		left: 1em;
		transform: translateY(-50%);
	}
	div.price p.att{
		padding-bottom: 0;
		line-height: 1.4em;
		padding-top: 10px;
	}
	.recommend{
		margin-top: 30px;
	}
}


#plan table{
	width: 100%;
	margin: 30px 0;
	border-collapse: collapse;
	color: var(--accent-color);
	font-weight: 700;
}
#plan table tr{
	border-bottom: 1px solid var(--accent-color);
}
#plan table th,
#plan table td{
	padding: 20px 0;
	width: 25%;
}
#plan table th{
	text-align: left;
	vertical-align: middle;
	padding-left: 80px;
	font-weight: 400;
}
#plan table tr:nth-of-type(1) th{
	background: url(../img/plan1.svg) no-repeat left center/70px;
}
#plan table tr:nth-of-type(2) th{
	background: url(../img/plan2.svg) no-repeat left center/70px;
}
#plan table tr:nth-of-type(3) th{
	background: url(../img/plan3.svg) no-repeat left center/70px;
}
#plan table tr:nth-of-type(4) th{
	background: url(../img/plan4.svg) no-repeat left center/70px;
}
#plan table tr:nth-of-type(5) th{
	background: url(../img/plan5.svg) no-repeat left center/70px;
}
#plan table tr:nth-of-type(6) th{
	background: url(../img/plan6.svg) no-repeat left center/70px;
}
#plan table tr:nth-of-type(7) th{
	background: url(../img/plan7.svg) no-repeat left center/70px;
}
#plan table tr:nth-of-type(8) th{
	background: url(../img/plan8.svg) no-repeat left center/70px;
}
#plan table tr:nth-of-type(9) th{
	background: url(../img/plan9.svg) no-repeat left center/70px;
}
#plan table td{
	text-align: center;
}
#plan table td span:after{
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid var(--accent-color);
}
#plan table td small{
	display: block;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	line-height: 1em;
}
#plan table td strong{
	font-size: 24px;
	font-weight: 700;
	-webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--accent-color);
  display: inline-block;
}

@media screen and (max-width:767px) {
	#plan table {
		margin-top: 0;
	}
	#plan table th,
	#plan table td{
		padding-bottom: 10px;
	}
	#plan table th{
		padding-left: 0px;
		padding-top: 50px;
		background-position: center 10px!important;
		background-size: 40px!important;
		text-align: center;
		font-weight: 400;
		font-size: 12px;
		line-height: 1.4em;
	}
	#plan table td{
		vertical-align: middle;
		position: relative;
		padding-top: 10px;
	}
	#plan table tr:nth-of-type(4) td{
		padding-bottom: 20px;
	}
	#plan table td small{
		position: absolute;
		bottom: 5px;
		font-size: 12px;
	}
	#plan div.planname{
		display: flex!important;
		justify-content: space-between;
	}
	#plan div.planname > div{
		width: 25%;
		text-align: center;
	}
	#plan div.planname h3{
		font-size: 18px;
		font-family: "Inter", sans-serif;
		font-style: italic;
		font-weight: 400;
		margin-bottom: 0px;
		width: 100%;
	}
	#plan table td strong{
		margin-top: -5px;
	}
}

#option{
	padding-top: 80px;
	margin-top: -80px;
}
#option h2{
	margin-bottom: 0;
}
#option p.sub{
	color: var(--accent-color);
	font-weight: 700;
	padding-bottom: 50px;
}
#option .flex > div{
	width: 23%;
}
#option .flex > div h3{
	font-size: 20px;
	color: var(--accent-color);
	display: flex;
	align-items:end;
	justify-content: flex-start;
	line-height: 1.2em;
	font-weight: 700;
	height: 2em;
}
#option .flex > div h3 span{
	display: block;
	font-size: 50px;
	font-family: "Inter", sans-serif;
	font-weight: 300;
	font-style: italic;
	line-height: 0.8em;
	padding-right: 10px;
}
#option .flex > div img{
	border-radius: 16px 0;
	margin-bottom: 10px;
	aspect-ratio:4/2.5;
	object-fit: cover;
}

@media screen and (max-width:767px) {
	#option p.sub{
		font-size: 20px;
		font-weight: 400;
	}
	#option .flex > div{
		width: 100%;
		margin-bottom: 20px;
		position: relative;
	}
	#option .flex > div h3{
	}
	#option .flex > div h3 br{
		display: none;
	}
	#option .flex > div > div{
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
	}
	#option .flex > div > div img{
		aspect-ratio:4/3;
		width: 40%;
		display: block;
		position: relative;
	}
	/*#option .flex > div:nth-of-type(4) > div img{
		object-fit: contain;
		background: white;
	}*/
	#option .flex > div > div p{
		width: 56%;
	}
}

/*faq*/
#faq{
	padding-top: 0px;
}
#faq .question{
	background: linear-gradient(90deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
	padding: 20px;
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-color);
	display: flex;
}
#faq .question span{
	font-family: "Inter", sans-serif;
	font-weight: 300;
	font-style: italic;
	display: block;
	margin-right: 0.5em;
}
#faq .answer{
	padding: 20px 0 40px 40px;
	line-height: 1.8em;
}
@media screen and (max-width:767px) {
	#faq .question{
		padding: 10px;
		line-height: 1.4em;
		font-size: 18px;
	}
	#faq .answer{
		padding: 10px 10px 40px 20px;
	}
}

/*case study*/
ul.slick {
	margin-top: 20px;
}
ul.slick li{
	padding: 0 10px;
}
ul.slick li h3{
	text-align: center;
	font-size: 20px;
	padding-bottom: 0px;
}
ul.slick li img{
	margin-bottom: 10px;
	aspect-ratio:4/3;
	object-fit: cover;
}
ul.slick li div.company,
ul.slick li div.product{
	font-size: 20px;
}
ul.slick li div.product{
	margin-bottom: 20px;
}
.slick-prev, .slick-next{
	width: 26px;
	height: 50px;
	top: 30%;
}
.slick-prev {
    left: -35px;
}
.slick-next {
    right: -35px;
}
.slick-prev:before, .slick-next:before{
		content: '';
		width: 26px;
		height: 50px;
		position: absolute;
		right: 0px;
		top: 0;
		background: url(../img/next.svg) no-repeat center center/100%;
		z-index: 500;
}
.slick-prev:before{
	background: url(../img/prev.svg) no-repeat center center/100%;
}
@media screen and (max-width:767px) {
	#case-wrap{
		padding-bottom: 20px;
	}
	ul.slick {
		margin-bottom: 30px;
	}
	ul.slick li{
		padding: 0 20px;
	}
	ul.slick li div.company,
	ul.slick li div.product{
		font-size: 16px;
	}
	.slick-prev, .slick-next{
		top: 35%;
	}
	.slick-prev {
		left: 0px;
	}
	.slick-next {
		right: -15px;
	}
	
	.slick-prev:before, .slick-next:before{
		right: 12px;
		width: 14px;
		height: 30px;
		background: url(../img/next_sp.svg) no-repeat center center/100%;
	}
	.slick-prev:before{
		background: url(../img/prev_sp.svg) no-repeat center center/100%;
	}
}
#operating {
	background: white;
}
#operating h2{
	padding-bottom: 30px;
}
#operating ul.flex li{
	width: 48%;
}
#operating ul.flex li h3{
	font-size: 20px;
	text-align: center;
	padding-bottom: 0px;
}
#operating ul.flex li>div,
#operating ul.flex li>p{
	width: 48%;
}
@media screen and (max-width:767px) {
	#operating ul.flex li,
	#operating ul.flex li>div,
	#operating ul.flex li>p{
		width: 100%;
	}
	#operating ul.flex li{
		margin-bottom: 20px;
	}
	#operating ul.flex img{
		display: block;
		margin: auto;
		margin-bottom: 20px;
		/*width: 80%;*/
		width: 284px;
		height: 82px;
	}
	#operating ul.flex li h3{
		font-weight: 700;
		padding-bottom: 10px;
	}
}

#operating .book{
	padding: 30px 180px;
    border-radius: 16px 0 16px 0;
    transform: skewX(-5deg);
    background: rgb(176 218 241 / 30%);
	margin: 50px 0;
}
#operating .book h3{
	font-size: 30px;
	text-align: center;
	padding-bottom: 30px;
	font-weight: bold;
}
#operating .book > div{
	transform: skewX(5deg);
}
#operating .book > div ul li{
	display: flex;
	justify-content: space-between;
	margin-bottom: 2em;
}
#operating .book div ul li img{
	height: 200px;
	max-width: none;
	width: 147px;
}
#operating .book div ul li div.exp{
	width: calc(100% - 180px);
}
#operating .book div ul li div.exp p{
	padding-bottom: 0.5em;
}
#operating .book div ul li div.exp p.lead{
	font-size: 18px;
	color: var(--accent-color);
	font-weight: bold;
}
#operating .book div ul li div.exp p.title{
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4em;
}
#operating .book div ul li div.exp p.link{
	text-align: right;
	padding-top: 5px;
}
#operating .book div ul li div.exp p.link a{
	display: inline-block;
	background: var(--accent-color);
	color: white;
	padding: 6px 30px;
	border-radius: 40px;
	font-weight: bold;
}
@media screen and (max-width:767px) {
	#operating .wrapper{
		padding-bottom: 40px;
	}
	#operating .book{
		padding: 20px 10px 10px 10px ;
        transform: skewX(0deg);
		margin: 30px 0 0 0;
	}
	#operating .book h3{
		font-size: 20px;
		padding-bottom: 10px;
	}
	#operating .book > div{
		transform: skewX(0deg);
	}
	#operating .book div ul li img{
		height: 100px;
		max-width: none;
		width: 73px;
	}
	#operating .book div ul li div.exp{
		width: calc(100% - 90px);
	}
	#operating .book div ul li div.exp p.lead,
	#operating .book div ul li div.exp p.title{
		font-size: 16px;
	}
	#operating .book div ul li div.exp p.title br{
		display: none;
	}
}
#contact{
	margin-top: 0;
}
#contact h2{
	position: relative;
	top:auto;
	left: auto;
	text-align: center;
	transform:none;
	color: white;
}
#contact iframe{
	height: 752px!important;
	max-width: 800px!important;
	margin: auto;
}

#contact .hbspt-form
#contact form{
	display: block;
	max-width: 800px;
	margin: auto;
}
#contact form a{
	color: var(--bg-color);
	text-decoration: underline;
}
#contact form table{
	width: 100%;
}
#contact form table th,
#contact form table td{
	padding: 20px 0;
}
#contact form table th{
	text-align: left;
	vertical-align: top;
}
#contact form table th span{
	display: inline-block;
	padding: 2px 10px;
	font-size: 14px;
	background: white;
	color: var(--accent-color);
	font-weight: 700;
	margin-left: 1em;
}
#contact form table tr td input{
	border-radius: 5px;
	padding: 10px;
	background: white;
}
#contact form table tr td input::placeholder{
	font-size: 14px;
}
#contact form table tr:nth-of-type(1) td input{
	width: 20em;
}
#contact form table tr:nth-of-type(2) td input{
	width: 16em;
}
#contact form table tr:nth-of-type(3) td input,
#contact form table tr:nth-of-type(5) td input{
	width: 10em;
}
#contact form table tr:nth-of-type(4) td input{
	width: 15em;
}
#contact form table td textarea{
	width: 100%;
	height: 10em;
	border-radius: 5px;
	padding: 10px;
	background: white;
}

.checkbox {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0px 50px;
    position: relative;
    width: auto;
	vertical-align: middle;
}
.checkbox::before {
    background: #fff;
	border-radius: 5px;
    content: '';
    display: block;
    height: 28px;
    left: 5px;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    width: 28px;
}
label{
	cursor:pointer;
}
.checkbox::after {
    border-right: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    content: '';
    display: block;
    height: 16px;
    left: 14px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 8px;
}
input[type=checkbox] ~ input[type=submit]{
	opacity: 0.7;
}
input[type=checkbox]:checked ~ .checkbox::after {
    opacity: 1;
}
input[type=submit]{
	display: block;
	margin: 60px auto 0 auto;
	background: white;
	color: var(--text-color);
	font-weight: 700;
	text-align: center;
	padding: 10px;
	width: 100%;
	max-width: 14em;
	border-radius: 50px;
	font-size: 20px;
}
p.message{
	display: none;
}


@media screen and (max-width:767px) {
	#contact{
		margin-top: 0;
		padding-bottom: 40px;
	}
	#contact form table th,
	#contact form table td{
		display: block;
		padding: 10px 0 0 0;
	}
	#contact form table td{
		padding-bottom: 20px;
	}
	#contact form table th span{
		display: inline-block;
		padding: 0px 5px;
	}
	#contact form table tr td input{
		border-radius: 5px;
		padding: 10px;
		background: white;
		box-sizing: border-box;
	}
	#contact form table tr:nth-of-type(1) td input,
	#contact form table tr:nth-of-type(2) td input,
	#contact form table tr:nth-of-type(4) td input{
		width: 100%;
	}
	#contact form table tr:nth-of-type(3) td input,
	#contact form table tr:nth-of-type(5) td input{
		width: 70%;
	}
	#contact form table td textarea{
		box-sizing: border-box;
	}
	.checkbox{
		margin-top: 10px;
	}
	input[type=submit]{
		margin: 20px auto 40px auto;
	}
	#contact iframe{
		height: 780px!important;
	}
}
#contact iframe.submitted{
	height: auto!important;
}