/* =Reset=
-------------------------------------------------------------- */
/* assets */
:root{
	--color_primary: #333;
	--color_main: #0053A2;
	--color_main-light: #E3F1FD;
	--color_point: #A50;
	--color_point-grad_start: #EFA52E;
	--color_point-grad_end: #E68E00;
	--color_point2: #003879;
	--color_point2-grad_start: #005DC7;
	--color_point2-grad_end: #001B3A;
	--color_white: #FFF;
	--color_gray: #CCC;
	--color_gray-light: #EFEFEF;
	--color_gray-light2: #E8EBED;
	--color_gray-dark: #999;
	--color_gray-dark2: #797979;
	--color_danger: #c00;
	--color_marker: #FFEF3A;
	--color_shadow: rgba(0,0,0,0.14);
	--color_shadow2: rgba(0,0,0,0.25);

	--fs-xxl: 4.76em;	/* 16の場合：76px, 14の場合：70px, 13の場合：67px */
	--fs-xl: 2.63em;	/* 16の場合：42px, 14の場合：36.8px, 13の場合：34.2px */
	--fs-l: 2.25em;		/* 16の場合：34px, 14の場合：28px, 13の場合：26px */
	--fs-l-m: 1.75em;
	--fs-m: 1.5em;		/* 16の場合：24px, 14の場合：21px, 13の場合：19.5px */
	--fs-s: 1.25em;		/* 16の場合：20px, 14の場合：18px, 13の場合：16.2px */
	--fs-xs: 1.13em;	/* 16の場合：18px, 14の場合：16px, 13の場合：14.6px */
	--fs-xxs: 0.88em;	/* 16の場合：14px, 14の場合：12px, 13の場合：11.4px */
	
	--family-normal: "Yu Gothic Medium","游ゴシック Medium",YuGothic,"游ゴシック体","Hiragino Sans","ヒラギノ角ゴシック","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","Meiryo UI","Meiryo","メイリオ",Helvetica,Helvetica Neue,Arial,Osaka,sans-serif;
	--family-meiryo: "Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	--family-gothic: "Century Gothic",CenturyGothic,AppleGothic,sans-serif;
	--family-min: "fot-udmincho-pr6n","Yu Mincho Medium","游明朝 Medium",YuMincho,"游明朝体","Hiragino Mincho ProN","ヒラギノ明朝 ProN","Hiragino Mincho Pro","ヒラギノ明朝 Pro", "Times New Roman", serif;
}

body,div,dl,dt,dd,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,table,th,td,figure{margin:0;padding:0;}
header,main,footer,article,aside,section,figure,picture{display: block;}

h1,h2,h3,h4,h5,h6{font-size:100%;}
table{border-collapse: collapse;border-spacing:0;}
caption{text-align:left;}
fieldset,img{border:0;}
img { max-width: 100%;}
input,button,textarea,select{font-size:inherit; font-family:inherit;}
hr { display: none;}

/* edit reset */
a { transition: all 0.2s ease;}
a:hover { text-decoration: none;}

input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
input[type="number"], textarea {
	font-family: inherit;
	font-size: inherit;
	border: 1px solid var(--color_gray);
	border-radius: 4px;
	padding: 0.4em 0.5em;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
textarea { width: 100%;}
input[type="number"] { width: 6em;}

input[type="submit"], input[type="reset"], input[type="button"],
button { -webkit-appearance: none; appearance: none; cursor: pointer; outline: none;}

select {
	font-family: initial;
	font-size: initial;
	border: 1px solid var(--color_gray);
	border-radius: 5px;
	padding: 0.6em 0.5em;
}
select.full { width: 100%;}

/* base
-------------------------------------------------------------- */
html, body { height: 100%;}
body{
	font-size:16px;
	font-family: var(--family-normal);
	color:var(--color_primary);
}
#wrapper,.contents {overflow:hidden;}
#wrapper { position: relative; min-height: 100%;}
#container { padding-bottom: 1.8em;}

*, *:before, *,:after { box-sizing: border-box;}
dl, p { margin: 1em 0;}

@media screen and (max-width: 896px) {
	body{ font-size:14px;}
	ul, ol { padding-left: 1.8em;}
}
@media screen and (max-width: 320px) {
	body{ font-size:13px;}
}


/* utility
-------------------------------------------------------------- */
.fLeft		{float:left !important;}
.fRight		{float:right !important;}
.clr, .clear {clear:both; overflow: hidden;}

/* clearfix */
.cf:before,
.cf:after	{content:".";display:block;height:0;overflow:hidden;}
.cf:after	{clear:both;}
.cf			{zoom:1;} /* IE < 8 */

/* fonts */
.tLeft		{text-align:left !important;}
.tRight		{text-align:right !important;}
.tCenter	{text-align:center !important;}
.clConcept	{color: var(--color_main);}
.clBlack	{color:var(--color_primary);}
.clRed		{color:var(--color_danger);}
.clWhite	{color:var(--color_white);}
.fsM {font-size: 1.18em;}
.fsL {font-size: 1.25em;}
.bold {font-weight: bold;}
.yellowMarker {
	font-weight: bold;
	text-decoration: underline;
	text-decoration-thickness: 0.3em;
	text-decoration-color: var(--color_marker);
	text-underline-offset: -0.2em;
	text-decoration-skip-ink: none;
}

.sFont{ font-size:0.8rem; font-weight: normal; }
.vaTop{ vertical-align: top; }


/* margin */
.m0			{margin: 0 !important;} /* 強制リセット用のため多用厳禁 */
.mt5 {margin-top:5px;} .mt10 {margin-top:10px;} .mt15 {margin-top:15px;} .mt20 {margin-top:20px;}
.mt1em {margin-top:1em;} .mt2em {margin-top:2em;} .mt3em {margin-top:3em;} .mt4em {margin-top:4em;}
.mr5 {margin-right:5px;} .mr10 {margin-right:10px;} .mr15 {margin-right:15px;} .mr20 {margin-right:20px;}
.mb5 {margin-bottom:5px;} .mb10 {margin-bottom:10px;} .mb15 {margin-bottom:15px;} .mb20 {margin-bottom:20px;}
.mb1em {margin-bottom:1em;} .mb2em {margin-bottom:2em;} .mb3em {margin-bottom:3em;} .mb4em {margin-bottom:4em;}
.ml5 {margin-left:5px;} .ml10 {margin-left:10px;} .ml15 {margin-left:15px;} .ml20 {margin-left:20px;} .ml40 {margin-left:40px;}
.ml1em {margin-left:1em;} .ml2em {margin-left:2em;} .ml3em {margin-left:3em;} .ml4em {margin-left:4em;}

/* padding */
.p0			{padding: 0 !important;} /* 強制リセット用のため多用厳禁 */
.pt5 {padding-top:5px;} .pt10 {padding-top:10px;} .pt15 {padding-top:15px;} .pt20 {padding-top:20px;}
.pt1em {padding-top:1em;} .pt2em {padding-top:2em;} .pt3em {padding-top:3em;} .pt4em {padding-top:4em;}
.pr5 {padding-right:5px;} .pr10 {padding-right:10px;} .pr15 {padding-right:15px;} .pr20 {padding-right:20px;}
.pr1em {padding-right:1em;} .pr2em {padding-right:2em;} .pr3em {padding-right:3em;} .pr4em {padding-right:4em;}
.pb5 {padding-bottom:5px;} .pb10 {padding-bottom:10px;} .pb15 {padding-bottom:15px;} .pb20 {padding-bottom:20px;}
.pb1em {padding-bottom:1em;} .pb2em {padding-bottom:2em;} .pb3em {padding-bottom:3em;} .pb4em {padding-bottom:4em;}
.pl5 {padding-left:5px;} .pl10 {padding-left:10px;} .pl15 {padding-left:15px;} .pl20 {padding-left:20px;}
.pl1em {padding-left:1em;} .pl2em {padding-left:2em;} .pl3em {padding-left:3em;} .pl4em {padding-left:4em;}


.hidePc-Tb {display: none;}
.hidePc-Sp {display: none;}

@media screen and (max-width: 1024px) {
	.hideTb {display: none;}
	.hidePc-Tb {display: block; display: initial;}
	.tCenter.tbLeft {text-align:left !important;}
}
@media screen and (max-width: 480px) {
	.hideSp {display: none;}
	.hidePc-Sp {display: block; display: initial;}
	.tCenter.spLeft {text-align:left !important;}
}



/* モバイルファースト用（iPhoneXRサイズ基準）
@media screen and (min-width: 480px) {}
@media screen and (min-width: 896px) and (min-width: 1024px) {}
@media screen and (min-width: 1024px) {}
 */
/* デスクトップファースト用（iPhoneXRサイズ基準）
@media screen and (max-width: 1024px) and (orientation: portrait) {} //タブレット縦のみ
@media screen and (max-width: 896px) and (orientation: landscape) {} //スマホ横のみ
@media screen and (max-width: 896px) {}
@media screen and (max-width: 768px) {} //従来のスマホ基準
@media screen and (max-width: 480px) {}
 */

/* header
-------------------------------------------------------------- */
.header {
	position: fixed;
	width: 100%;
	padding: 0.5em 28% 0.5em 0.5em;
	z-index: 9999;
	background-color: var(--color_white);
	box-shadow: 0px 3px 6px var(--color_shadow2);
	font-weight: bold;
}
.header a{
	display: flex;
	align-items: center;
	gap: 0.4em;
	text-decoration: none;
	color: var(--color_primary);
}
.noForm .header {
	width: 100%;
	position: static;
	padding-right: 0;
}

.hLogo img{
	width: 148px;
	height: auto;
}
.hNav {
    vertical-align: middle;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hNav {padding-right: 2%;}
.gNav, .btnNav {
	text-align: left;
	list-style: none;
	padding: 0;
	margin: 0;
}
.hNav .hMenu li {
	display: inline-block;
	vertical-align: middle; padding: 0;
	padding: 0 0.5em;
}
.hNav .hMenu li.contact{ display: none; }
.gNav li a {
	font-weight: bold;
	text-decoration: none;
	color: var(--color_main);
}
.hNav li a:hover{
	text-decoration: underline;
	transition: all .3s;
}
.hBtn {display: none;}
.triggerBtn {
	position: absolute;
	top: 0;
	right: 0;
	display: none;
	width: 50px;
	height: 50px;
}
.triggerBtn > span {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 24px;
	height: 14px;
	margin: auto;
}
.triggerBtn > span:before,
.triggerBtn > span:after {
	position: absolute;
	left: 0;
	right: 0;
	content: "";
	border-top: 3px solid var(--color_main);
	border-radius: 3px;
	transition: 0.2s all linear;
	margin: auto;
}
.triggerBtn > span:before {top: 0;}
.triggerBtn > span:after {bottom: 0;}

.fixed .triggerBtn > span:before,
.fixed .triggerBtn > span:after,
.open_menu .triggerBtn > span:before,
.open_menu .triggerBtn > span:after {border-top-color: var(--color_main);}
.open_menu .triggerBtn > span:before {top: 5px; transform: rotate(45deg);}
.open_menu .triggerBtn > span:after {bottom: 5px; transform: rotate(-45deg);}

.open_menu .header{
	position: fixed;
	background-color: var(--color_white);
	box-shadow: 0px 3px 6px var(--color_shadow2);
	color: var(--color_main);
}
.open_menu .header{color: var(--color_main);}
.open_menu .header{color: var(--color_main);}
.open_menu .header:before,
.open_menu .header:after{display: none;}

.open_menu .hLogo{background: url(../img/header/header_logo_color.svg) no-repeat 0 50% / contain;}
.open_menu .hLogo img{visibility: hidden;}


@media screen and (max-width: 1366px) {
	.header{padding-right: 32%;}
	.hMenu, .gNav, .btnNavi {padding: 0;}
}

@media screen and (max-width: 1024px) {
	.header{padding-right: 0;}
	.hTop,
	.hBtm { font-size: 0.88em;}
	.btnNavi li a {min-width: 140px;}
	.gNav li {padding: 0 10px;  }
}

@media screen and (max-width: 896px) {
	.header{ font-size:0.8em; }
	.hLogo img{ width: 100px; }
	.hContact{
		display:block;
		margin-right:4em;
	}
	.triggerBtn {display: block;}
	.hNav {display: none;}
	.header > .inr {font-size: 1em; padding: 10px 4%;}
	.open_menu .hNav {
		position: absolute;
		top: 50px;
		left: 0;
		width: 100%;
		display: flex;
		flex-flow: column-reverse nowrap;
		justify-content: center;
		background: var(--color_white);
		box-shadow: 0px 3px 6px var(--color_shadow2);
		padding: 1%;
	}
	.hMenu {width: 100%;}
	.gNav{display:block; width: 100%;}
	.gNav{padding:0; margin-top: 0;}
	.gNav li + li {margin: 0; border-top: 1px dotted var(--color_gray-dark);}
	.hMenu ul li {width: 100%;}
	.hNav .hMenu li.contact{ display: block; }
	.gNav li a {
		position: relative;
		display: block;
		color: var(--color_primary);
		font-weight: bold;
		padding: 0.5em 0 0.5em 2em;
	}
	
	.gNav li a:before {
		position: absolute;
		left: 1em;
		top: 50%;
		display: block;
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 4px 0 4px 6px;
		border-color: transparent transparent transparent var(--color_main);
		margin-top: -4px;
	}
	.btnNav {
		width: 100%;
		display: flex;
		justify-content: center;
		padding: 1em;
		align-items: center;
	}
	.btnNav li + li {padding-left: 2%;}
	.hBtn {display: inline-block;}
	.btnNav .hBtn a { 
		background: linear-gradient(to bottom, var(--color_point-grad_start) 0%, var(--color_point-grad_end) 100%);
		border-bottom: 5px solid var(--color_point);
		color: var(--color_white);
		text-decoration: none;
		padding: 0.8em 1.5em;
		border-radius: 40px;
		font-weight: bold;
	}
}

@media screen and (max-width: 480px) {
	.header{ font-size:0.64em; }
	.hLogo img{ width: 80px; }
	.hContact .btn a,
	.hContact a.btn,
	.hContact label.btn{
		padding: 0.5em;
	}
}


/* footer
-------------------------------------------------------------- */
.footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	color: var(--color_white);
	text-align: center;
	background-color: var(--color_main);
	font-size: 12px;
	padding:1em 28% 1em 1em;
}
.footer > div { padding: 0.5em 1em;}
.footer a {color: var(--color_white);}
.noForm .footer { width: 100%; padding-right: 0;}

@media screen and (max-width: 1366px) {
	.footer { padding-right: 32%; }
}
@media screen and (max-width: 1024px) {
	.footer { padding-right: 0; }
}

 /* module
-------------------------------------------------------------- */
.contents{ padding-right: 28%; }
.noForm .contents {
	width: 100%;
	max-width: 1366px;
	padding: 60px 4% 4%;
	margin: 0 auto;
}

@media screen and (max-width: 1366px) {
	.contents{ padding-right: 32%; }
}
@media screen and (max-width: 1024px) {
	.contents{ padding-right: 0; }
}

/*== section ==*/
.sec {padding: 6% 4%;}
.sec > .inr {
	width: 1240px;
	max-width: 100%;
	margin: 0 auto;
}
.sec > .inr.widthS { width: 730px; }

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

@media screen and (max-width: 1366px) {
	.sec {padding: 8% 4%;}
}
@media screen and (max-width: 480px) {
	.sec {padding-top: 10%; padding-bottom: 10%;}
}

/*== link ==*/
a[target="_blank"]:after {
	display: inline-block;
	content: "\f35d";
	color: inherit;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	padding-left: 0.4em;
}

.btn a,
a.btn,
label.btn{
	display: inline-block;
	background: linear-gradient(90deg, var(--color_point-grad_end) 0%, var(--color_point-grad_start) 100%);
	box-shadow: 0px 5px 12px var(--color_shadow);
	border: none;
	padding: 0.4em 2em 0.4em 1.6em;
	text-decoration: none;
	color: var(--color_white);
	font-weight: bold;
	text-align: center;
}
.btn a:hover,
a.btn:hover,
label.btn:hover{
	cursor: pointer;
	transition: all .3s;
	opacity: 0.85;
}

.btnArea{
	display: flex;
	justify-content:center;
	gap:1em;
}
.btnArea a{
	width: 50%;
	padding: 1em 2em;
	text-align:center;
	color: var(--color_white);
}
.btnArea a.contact{
	color: var(--color_white);
	background: linear-gradient(90deg, var(--color_point-grad_end) 0%, var(--color_point-grad_start) 100%);
}
.btnArea a.download{
	color: var(--color_primary);
	background: linear-gradient(90deg, var(--color_white) 0%, #D8D8D8 100%);
}
.btnArea a.contact:before,
.btnArea a.download:before {
	display: inline-block;
	content: "";
	width: 1em;
	height: 1em;
	vertical-align: middle;
	margin: -0.2em 0.5em 0 -1em;
}
.btnArea a.contact:before { background: url("../img/common/icon_contact.svg") no-repeat 50% 50% / contain;}
.btnArea a.download:before { background: url("../img/common/icon_download.svg")no-repeat 50% 50% / contain;}

@media screen and (max-width: 896px) {
	.btnArea a{ padding: 1em; }
}


/*== label ==*/
.hl1 {
	color: var(--color_main);
	font-size: var(--fs-xl);
	font-family: var(--family-min);
	font-weight: bold;
	text-align: center;
	line-height: 1.3;
	margin: 0 0 1em 0;
}
.hl_white {color: var(--color_white);}

@media screen and (max-width: 896px) {
	.hl1 { font-size: var(--fs-l);}
}

/*== table ==*/
table { width: 100%; border: none; margin: 0;}
th, td {
	background-color: var(--color_white);
	border: 1px solid var(--color_gray);
	word-break: break-all;
	padding: 0.75em;
}
th {
	width: 25%;
	background-color: var(--color_gray-light);
}
thead th {width: auto;}

/* mv
-------------------------------------------------------------- */

.mv {
	position: relative;
	background:linear-gradient( 135deg, var(--color_point2-grad_start) 0%, var(--color_point2-grad_end) 100% );
	padding: 70px 0 0;
	z-index: 1;
	overflow: hidden;
}
.mv::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 40%;
	height: 60%;
	background: url("../img/mv/mv.svg") no-repeat 90% 100% / contain;
	z-index: 1;
}
.mv::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 30%;
	height: 100%;
	background-color: var(--color_point2-grad_start);
	z-index: 0;
	clip-path: polygon(30% 0, 100% 0, 100% 100%, 10% 100%);
}
.mv > .inr {
	width: 100%;
	margin: 0 auto;
	padding:8% 4%;
	position: relative;
	z-index: 1;
}

.mv p { width: 60%; color: var(--color_white);}
.mv hgroup {
	font-size: 1.95vw;
	font-family: var(--family-min);
	font-weight: bold;
	line-height: 1.2;
}
.mv hgroup h1 {
	display: inline-block;
	background-color: var(--color_white);
	color: var(--color_main);
	font-size: 2.46em;
	padding: 0.1em;
}
.mv hgroup h1 > small { font-size: 0.6em;}
.mv hgroup p { font-size: var(--fs-l); margin: 0.6em 0 0;}
.mv hgroup p > span { color: var(--color_marker);}
.mv .txt { font-size: 1.25vw; line-height: 1.8;}

.mv .btnArea{ width:60%; margin: 3em 0 0; font-size: 1.25vw;}


@media screen and (max-width: 1640px) {
	.mv hgroup { font-size: 1.95vw;}
	.mv .btnArea{ font-size: 1.4vw;}
}
@media screen and (max-width: 1366px) {
	.mv hgroup { font-size: 1.84vw;}
}
@media screen and (max-width: 1024px) {
	.mv p,
	.mv .btnArea{ width:66%; font-size: inherit;}
	.mv .txt { font-size: 1em;}
}
@media screen and (max-width: 896px) {
	.mv::before { width: 32%;}
}
@media screen and (max-width: 480px) {
	.mv::before {
		width: 42%;
		background-position: 10px 100%;
	}
	.mv p { width: auto;}
	.mv hgroup { font-size: 5vw;}
	.mv hgroup p { font-size: 1.8em;}
	.mv .btnArea {
		width: 55%;
		flex-flow: column nowrap;
		margin: 6% 0 19%;
	}
	.mv .btnArea a { width: 100%;}
}


/* secAbout
-------------------------------------------------------------- */
.secAbout{
	background: url("../img/about/bg_img.svg") no-repeat -18% center / 28% auto, var(--color_main-light);
	padding: 8% 10% 8% 20%;
}
.secAbout h2{ text-align:left; }

@media screen and (max-width: 1024px){
	.secAbout{ padding: 8% 4% 8% 20%;}
}
@media screen and (max-width: 480px){
	.secAbout{
		background-size: 260px auto;
		background-position: center 130%;
		padding: 8% 4% 190px;
	}
}

/* secKadai
-------------------------------------------------------------- */
.kadaiList{
	width:32%;
	background-color:#EFEFEF;
	padding:3% 2%;
}
.kadaiList dt{
	text-align: center;
	font-size: 1.32em;
	font-weight:bold;
	line-height: 1.2;
	margin-bottom: 0.6em;
}

@media screen and (max-width: 1366px) {
	.kadaiList dt{font-size: 1.18em;}
}
@media screen and (max-width: 680px) {
	.kadaiList{
		width:100%;
		padding:4%;
	}
	.kadaiList dt{ text-align:left; }
	.kadaiList dt br{ display:none; }
}


/* secOsusume
-------------------------------------------------------------- */
.osusumeList{
	width:32%;
	padding:18% 2% 3% 2%;
	background-color: #E3F1FD;
	background-repeat: no-repeat;
	background-position: center 12%;
	background-size: 75%;
}
.osusumeList:nth-child(1){ background-image: url("../img/osusume/img01.svg"); }
.osusumeList:nth-child(2){ background-image: url("../img/osusume/img02.svg"); }
.osusumeList:nth-child(3){ background-image: url("../img/osusume/img03.svg"); }

.osusumeList dt{
	text-align: center;
	font-size: 1.32em;
	font-weight:bold;
	line-height: 1.2;
	margin-bottom: 0.6em;
}

@media screen and (max-width: 1366px) {
	.osusumeList dt{font-size: 1.18em;}
}
@media screen and (max-width: 680px) {
	.osusumeList{
		width:100%;
		padding: 4% 28% 4% 4%;
		background-position: 95% center;
		background-size: 22%;
	}
	.osusumeList dt{ text-align:left; }
	.osusumeList dt br{ display:none; }
}
@media screen and (max-width: 480px) {
	.osusumeList{
		padding: 6% 6% 32% 6%;
		background-position: center 94%;
		background-size: 52%;
	}
}


/* secService
-------------------------------------------------------------- */
.secService{ background: #F6F9FB;}
.serviceImg{ width: 30%; }

.serviceList{ width: 68%; }
.serviceList .note{
	color: #CC0000;
	font-size:0.88em;
	text-align: right;
}
.serviceList dt{
	font-size: 1.32em;
	font-weight:bold;
	line-height: 1.2;
	margin-bottom: 0.6em;
}

.serviceBox{
	background-color: var(--color_white);
	border: 1px solid var(--color_gray);
	color:#999;
	padding: 4%;
}
.serviceBox dl{
	padding: 2%;
	width: 31%;
}
.serviceBox dl:nth-child(1){ border: 1px solid #BCD1FF; }
.serviceBox dl:nth-child(2){ border: 1px solid #FFD98B; }
.serviceBox dl:nth-child(3){ border: 1px solid #FFBEBE; }

.serviceBox dl dt{font-size:1.09em; }
.serviceBox dl:nth-child(1) dt{ color: var(--color_point2-grad_start); }
.serviceBox dl:nth-child(2) dt{ color: #CA8A04;}
.serviceBox dl:nth-child(3) dt{ color: #CC0000;}

.serviceBox dl dd p{ margin: 0;}


@media screen and (max-width: 680px) {
	.secService .flexArea{flex-direction: column;}
	.serviceImg{
		width: 80%;
		margin: 0 auto;
	}
	.serviceList{ width:100%; }
	.serviceList dt{ font-size:1.18em; }
	.serviceBox .flexArea{ flex-direction:row; }
	.serviceBox dl dt{ font-size:1em; }
}
@media screen and (max-width: 480px) {
	.serviceBox dl{ width:100%; }
	.serviceList .note{ text-align: left; }
}



/* secCta
-------------------------------------------------------------- */
.secCta{
	background: transparent linear-gradient(90deg, var(--color_point2-grad_start) 0%, var(--color_point2) 49%, var(--color_point2-grad_start) 100%);
	color: var(--color_white);
	text-align: center;
	padding: 8% 4%;
	font-weight: bold;
}
.secCta h3 {
	font-size: var(--fs-xl);
	font-family:var(--family-min);
	line-height: 1.4;
	margin: 0 0 0.5em 0;
}
.secCta span{
	font-size:0.9rem;
	font-weight:normal;
}

.secCta .btnArea{
	width: 60%;
	font-size: 1.25vw;
	margin: 0 auto;
}
@media screen and (max-width: 1024px) {
.secCta .btnArea{ font-size: inherit;}
.secCta .btnArea{ width: 550px; max-width: 100%;}
}
@media screen and (max-width: 680px) {
	.secCta{ font-size:1.8em;}
	.secCta .btnArea{
		flex-direction:column;
		gap:0.5em;
	}
	.secCta .btnArea a{ width:100%; }
	.secCta .btnArea a.contact,
	.secCta .btnArea a.download{ background-position: 30% center; }
}
@media screen and (max-width: 480px) {
	.secCta .btnArea a.contact,
	.secCta .btnArea a.download{ background-position: 20% center; }
}


/* secTuyomi
-------------------------------------------------------------- */
.tuyomiList{
	width: 48%;
	border:1px solid var(--color_gray);
	padding:14% 2% 4% 2%;
	background-repeat: no-repeat;
	background-position: center 15%;
	background-size: 18%;
}
.secTuyomi .tuyomiList:nth-child(1){ background-image: url("../img/tuyomi/icon01.svg"); }
.secTuyomi .tuyomiList:nth-child(2){ background-image: url("../img/tuyomi/icon02.svg"); }
.secTuyomi .tuyomiList:nth-child(3){ background-image: url("../img/tuyomi/icon03.svg"); }
.secTuyomi .tuyomiList:nth-child(4){ background-image: url("../img/tuyomi/icon04.svg"); }
.secTuyomi .tuyomiList:nth-child(5){ background-image: url("../img/tuyomi/icon05.svg"); }
.secTuyomi .tuyomiList:nth-child(6){ background-image: url("../img/tuyomi/icon06.svg"); }

.tuyomiList dt{
	text-align: center;
	font-size: 1.32em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.6em;
}

@media screen and (max-width: 1366px) {
	.tuyomiList dt{font-size: 1.18em;}
}
@media screen and (max-width: 1240px) {
	.tuyomiList{ background-position: center 12%; }
}
@media screen and (max-width: 680px) {
	.tuyomiList{
		width:100%;
		padding:14% 2% 4% 2%;
		background-size: 10%;
		background-position: center 8%;
	}
	.tuyomiList dt br{ display:none; }
}
@media screen and (max-width: 480px) {
	.tuyomiList{
		padding:18% 2% 4% 2%;
		background-size: 12%;
	}
}
@media screen and (max-width: 380px) {
	.tuyomiList{
		padding:28% 2% 4% 2%;
		background-size: 20%;
	}
}



/* secPrice
-------------------------------------------------------------- */
.secPrice{
	background-color: #F6F9FB;
}
.secPrice .flexArea{
	justify-content: center;
	align-items: center;
	gap:0.5em;
}

.secPrice .bgBlack{
	background-color: var(--color_primary);
	color: var(--color_white);
	margin-right:0.4em;
	padding:0.5% 1%;
}

.secPrice .price{
	font-size: 4.88em;
	text-align: center;
	margin: 0;
	font-weight: bold;
	line-height:1
}
.secPrice .price span{font-size: 0.38em;}

.secPrice .note{
	text-align:center;
	font-size: 0.68em;
	color: #999;
	margin-bottom: 2em;
}
.secPrice .btnArea{
	text-align:center;
	width: 35%;
	font-size: 1.25vw;
	margin: 0 auto;
 }
 .secPrice .btnArea a{ width: 100%; }

@media screen and (max-width: 1024px) {
.secCta .btnArea{ font-size: inherit;}
.secPrice .btnArea{ width: 320px; max-width: 100%;}
}

/* secCompany
-------------------------------------------------------------- */
.comtable th { text-align: left;}
.comtable td table,
.comtable td th,
.comtable td td {border: none; padding: 0;}
.comtable td table {display: inline-table; width: auto; margin-bottom: 1em;}
.comtable td table:last-child {margin-bottom: 0;}
.comtable td th {width: 8.5em; background-color: transparent;}
.comtable td th,
.comtable td td {padding: 0.1em 0;}
.comtable dl {margin: 0;}
.comtable dd {margin-bottom: 1em;}
.comtable dd:last-child {margin-bottom: 0;}
.comtable ul{
	padding-left:1.5em;
	margin:0;
}

@media screen and (max-width: 640px) {
	.comtable td .noBorder tr td:nth-child(2) {display: inline;}
	.comtable td th {
		width: auto;
		vertical-align: top;
	}
	.comtable td td + td {font-size: 0.88em;}
}
@media screen and (max-width: 480px) {
	.comtable td td {display: block;}
}


/* Consultant
--------------------------------------------------------------- */
.consulBox{
	display:flex;
	justify-content:space-between;
	flex-direction: row-reverse;
	margin-bottom:3em;
}
.consulBox:last-child{ margin-bottom: 0;}

.consulBox picture{ width:40%; }
.consulBox .content{ width:56%; }
.consulBox .content p{
	margin:0 0 0.5em 0;
}
.consulBox .content .ttl{
	color:var(--color_main);
	font-size: 26px;
	font-family: var(--family-min);
	font-weight:bold;
	border-bottom:1px solid var(--color_gray-light);
	line-height:1.2;
	margin-bottom: 1em;
	padding-bottom:0.25em;
}
.consulBox .content .name{
	font-size: 20px;
	font-weight:bold;
}

@media screen and (max-width: 768px) {
	.consulBox .content .ttl{ font-size:22px;}
	.consulBox .content .name{ font-size:18px;}
}
@media screen and (max-width: 480px) {
	.consulBox{ display: block; }
	.consulBox picture{ width:100%; }
	.consulBox .content{ width:100%; }
	.consulBox .content .ttl{ font-size:20px;}
}


/* Achievement
-------------------------------------------------------------- */
.secAchievement{
	background: var(--color_gray-light2);
}
.secAchievement .hl1 span{ font-size:0.7em; }

.secAchievement .inr{
	background:var(--color_white);
	padding:6% 4%;
	text-align: center;
}
.secAchievement p{
	color: var(--color_gray-dark2);
	font-size: 0.78em;
	text-align: left;
}
.secAchievement picture { text-align: center;}
.secAchievement picture img { width: 100%;}

@media screen and (max-width: 480px) {
	.secAchievement picture img { width: 250px;}
}


/* ssl
-------------------------------------------------------------- */
.sslBox{
	padding: 2em 4%;
	font-size:0.88em;
	display:flex;
	align-items:center;
	gap:1em;
}
@media screen and (max-width: 480px){
	.sslBox{ flex-direction:column; }
}


/* sideForm
-------------------------------------------------------------- */
.sideForm{
	font-size: 0.875em;
	position: fixed;
	top: 0;
	right: 0;
	width: 28%;
	height: 100%;
	background-color: var(--color_white);
	box-shadow: 0 0 16px var(--color_shadow2);
	z-index: 10000;
}
.sideForm > .inr {
	height: 100%;
	padding: 5% 8%;
	overflow: auto;
}
.sideForm .hl{
	color: var(--color_main);
	font-size: 1.6vw;
	font-family: var(--family-min);
	text-align: center;
	letter-spacing: 0.05em;
	line-height: 1.4;
	margin-bottom: 0.5em;
}
.sideForm dl {margin: 0 0 1em;}
.sideForm dt {
	font-weight: bold;
	font-size: 0.8vw;
	margin-bottom: 0.25em;
}
.sideForm dd { margin-bottom: 1em; }
span.must,
span.arbitrary{
	color: var(--color_white);
	padding: 0 0.3em;
	font-size: 12px;
	border-radius: 3px;
	display: inline-block;
	margin-right: 0.25em;
}
span.must { background-color: var(--color_main); }
span.arbitrary { background-color: var(--color_gray-dark); }

.sideForm textarea,
.sideForm input[type="text"],
.sideForm input[type="tel"],
.sideForm input[type="email"] { font-size: 0.8vw;}
.sideForm p { font-size: 0.8vw; margin: 0.5em 0 2em;}

/* formBtn */
.formBtn { font-size: 1.25vw; text-align: center;}
.formBtn .btn {
	display: inline-block;
	width: 100%;
	max-width: 480px;
	background: linear-gradient(90deg, var(--color_point-grad_start) 0%, var(--color_point-grad_end) 100%);
	color: var(--color_white);
	font-weight: bold;
	text-align: center;
	border: none;
	box-shadow: var(--color_shadow);
    padding: 1em 3em 1em 4em;
}
.formBtn .btn.contact:before {
	display: inline-block;
	content: "";
	width: 1em;
	height: 1em;
	background: url("../img/common/icon_contact.svg") no-repeat 40% 50% / contain;
	vertical-align: middle;
	margin: -0.2em 0.5em 0 -1em;
}

.formBtn .btn.goback{
	background: var(--color_gray-dark2);
	padding: 0.5em 3em;
}
.formBtn .btn:hover {
	cursor: pointer;
	transition: all .3s;
	opacity: 0.85;
}

@media screen and (max-width: 1640px) {
	.sideForm .hl{ font-size: 1.75em;}
	.sideForm dt { font-size: 1.1em;}
	.sideForm textarea,
	.sideForm input[type="text"],
	.sideForm input[type="tel"],
	.sideForm input[type="email"] { font-size: 1.1em;}
	.sideForm p { font-size: 1.1em;}
}
@media screen and (max-width: 1366px) {
	.sideForm {width: 32%;}
	.sideForm > .inr {padding: 8% 8% 5%;}
}
@media screen and (max-width: 1024px) {
	.sideForm {
		position: static;
		width: auto;
		height: auto;
		box-shadow: none;
		background-color:var(--color_main);
		padding: 2%;
		font-size: 1em;
		margin-bottom: 1em;
	}
	.sideForm.oneClm{
		background: none;
		box-shadow: 0 0 16px var(--color_shadow2);
	}
	.sideForm > .inr {
		height: auto;
		padding: 4%;
		background-color:var(--color_white);
	}
	/* formBtn */
	.formBtn { font-size: inherit;}
}
@media screen and (max-width: 480px) {
	.sideForm {padding-top: 10%; padding-bottom: 10%;}
}


/* contact
-------------------------------------------------------------- */
.noForm .sideForm {
	position: static;
	width: auto;
	height: auto;
	padding: 4%;
}
.compTxt {
	font-size: var(--fs-xs);
	line-height: 1.8;
	padding-bottom: 4%;
}
.compTxt p { margin: 1.5em 0;}

.rowFormWrap {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-content: space-between;
	align-items: stretch;
	margin: 2em 0;
}
.rowContent,
.rowForm { box-sizing: border-box;}

.rowContent { width: 46%; }
.rowForm {
    width: 50%;
    padding: 1em 0;
}
.noForm .rowForm{ width: 50%;}

@media screen and (max-width: 1024px) {
	.rowFormWrap { flex-direction: column; }
	.rowContent,
	.noForm .rowForm{ width: 100%; }
	.rowContent{ margin-bottom: 2em;}
}


.formPointBox{
	background: #f3f3f3 no-repeat 90% 90%;
	border-radius: 8px;
	padding: 1.5em;
}
.formPointBox .ttl {
	font-weight:bold;
	border-left: 8px solid #00336b;
	padding-left: 10px;
	margin-bottom: 12px;
}
.formPointBox li{ padding-bottom:5px; }
.formPointBox li:last-child{ padding-bottom:0; }


.errmsg{
	color:#de1739;
	padding:6px 10px;
	margin-left:2px;
}


/* speakerdeck
-------------------------------------------------------------- */
.speakerdeck-iframe{
	border: 0;
	background: padding-box padding-box rgba(0, 0, 0, 0.1);
	margin:0 0 1em 0;
	padding: 0;
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 40px;
	width: 100%;
	height: auto;
	aspect-ratio: 560 / 315;
}

.grecaptcha-badge{ z-index:99999;}



/* PC用フォームフォーカス
--------------------------------------------------------------- */
#container:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	content: "";
	background-color: rgba(0,0,0,0.8);
	z-index: 10000;
	transition: all 0.15s linear;
	opacity: 0;
}
#container.focus:before {
	width: 80%;
	opacity: 1;
}
.sideForm .reset {
	display: none;
	text-align: center;
	text-decoration: underline;
	margin: 12% 0 0;
	cursor: pointer;
}
.focus + .sideForm .reset { display: block;}
.sideForm .reset:hover { text-decoration: none;}

