/* =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: 13%; 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, #FF9D00 0%, #FFAF2E 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);}
}
@media screen and (max-width: 480px) {
	.hl1 { font-size: 6.5vw;}
}

/*== 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;}



/* uniq start
-------------------------------------------------------------- */
.bodyCopy {
font-size: 24px;
line-height: 1.55;
margin-bottom: 40px;
text-align: center;
}
@media screen and (max-width: 896px){
.bodyCopy {
font-size: 20px;
margin-bottom: 32px;
}
}
@media screen and (max-width: 680px) {
.bodyCopy {
font-size: 15px;
line-height: 1.6;
margin-bottom: 28px;
padding: 0;
}

}


/* mv
-------------------------------------------------------------- */
.mv {
background: #0073FF;
background: radial-gradient(circle, rgba(0, 115, 255, 1) 9%, rgba(117, 180, 255, 1) 100%);
position: relative;
padding: 70px 0 0;
z-index: 1;
overflow: hidden;
}
.mv::before {
background: url("../img/mv/mv.svg") right bottom no-repeat;
background-size: 30% auto;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.mv > .inr {
	width: 100%;
	margin: 0 auto;
	padding:5% 5.25%;
	position: relative;
	z-index: 1;
}
.mv h1 {
	font-family: var(--family-min);
	font-weight: bold;
	line-height: 1.1;
}
.mv h1 > span {
background: linear-gradient(transparent 0%, #FFF 0%);
color: var(--color_main);
display: inline;
font-size: 3.9vw;
	letter-spacing: 0.08em;
	line-height: 1.6;
		margin-bottom: 0.9vw;
	padding: 0.2em;
font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
}
.space {
display: inline-block;
width: 0.2em;
}
.mv .txt { 
color: var(--color_white);
font-size: 1.25vw;
line-height: 1.8;
}
.mv .btnArea{ 
width:60%; 
margin: 2em 0 0; 
font-size: 1.25vw;
}
@media screen and (max-width: 1024px) {
.mv h1 > span {
	font-size: 5.5vw;
}
.mv .txt { 
font-size: 2.2vw;
}
	.mv .btnArea{ width:66%; font-size: inherit;}
}
@media screen and (max-width: 680px) {
.mv {
padding: 40px 0 190px;
}
.mv::before {
background: url("../img/mv/mv.svg") center bottom -70px no-repeat;
background-size: 280px auto;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.mv > .inr {
	padding: 10% 5.25%;
}
.mv h1 > span {
	font-size: 7.5vw;
	letter-spacing: 0.06em;
}
.space2 {
display: block;
width: 0;
}
.mv .txt { 
font-size: 3.8vw;
letter-spacing: -0.02em;
line-height: 1.6;
margin: 20px 0;
}
.mv .txt br { 
display: none;
}
.mv .btnArea {
		width: 100%;
		margin: 0;
	}
}


/* assignment
-------------------------------------------------------------- */
.assignmentList {
display: flex;
justify-content: space-between;
list-style: none;
margin: 0;
padding: 0;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
}
.assignmentList li {
background: #EFEFEF;
font-size: 22px;
font-weight: 600;
line-height: 1.65;
letter-spacing: -0.01em;
padding: 60px 0 40px;
position: relative;
text-align: center;
width: calc(33.3333% - 16px);
&:before {
background: url("../img/assignment/icon_assignment.svg") left top no-repeat;
background-size: 41px auto;
content: '';
display: block;
height: 33px;
width: 41px;
position: absolute;
top: 20px;
left: 7.5%;
}

}
@media screen and (min-width: 1023px) and (max-width: 1240px) {
.assignmentList {
flex-direction: column;
}
.assignmentList li {
letter-spacing: 0.01em;
margin-bottom: 16px;
padding: 24px 28px 24px 90px;
position: relative;
text-align: left;
width: 100%;
&:before {
left: 28px;
top: calc(50% - 16px);
}
}
.assignmentList li br {
display: none!important;
}
}
@media screen and (max-width: 896px){
.assignmentList {
flex-direction: column;
}
.assignmentList li {
font-size: 18px;
line-height: 1.5;
letter-spacing: 0.01em;
margin-bottom: 12px;
padding: 24px 28px 24px 84px;
text-align: left;
position: relative;
width: 100%;
&:last-child {
margin-bottom: 0;
}
&:before {
margin-bottom: 0;
position: absolute;
left: 24px;
top: 28px;
}
}
.assignmentList li br {
display: none;
}
}
@media screen and (max-width: 680px){
.assignmentList li br {
display: inline;
}
.assignmentList li br.hideSp {
display: none;
}
}
@media screen and (max-width: 480px){
.assignmentList li {
font-size: 15px;
line-height: 1.5;
margin-bottom: 12px;
padding: 20px 20px 20px 84px;
position: relative;
width: 100%;
&:last-child {
margin-bottom: 0;
}
&:before {
margin-bottom: 0;
position: absolute;
left: 24px;
top: 24px;
}
}
}


/* secTuyomi
-------------------------------------------------------------- */
.secTuyomi {
padding-top: 3%;
}
.secTuyomi .hl1{
margin-bottom: 0;
}
.tuyomiList{
	width: calc(50% - 16px);
	border:1px solid var(--color_gray);
	margin: 0 0 32px;
	padding:13% 2.5% 4% 2.5%;
	background-repeat: no-repeat;
	background-position: center 11%;
	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: 24px;
    font-weight: bold;
    line-height: 1.5;
				letter-spacing: 0.02em;
    margin-bottom: 0.6em;
					font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
}
.tuyomiList dd{
    line-height: 1.7;
}
.secTuyomi .attP {
font-size: 12px;
margin: -8px 0 0;
}
@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{
		background-size: 60px;
		background-position: center 24px;
		margin: 0 auto 24px;
		padding:100px 6.5vw 32px;
		width:100%;
	}
.tuyomiList dt{
		font-size: 18px;
}
.tuyomiList dd{
    line-height: 1.75;
}
.secTuyomi .attP {
font-size: 10px;
margin: -4px 0 0;
}
}


/* secService
-------------------------------------------------------------- */
.secService{
background: #F6F9FB;
padding-left: 6%;
padding-right: 6%;
}
.secService .hl1{
margin-bottom: 0;
}
.secService .bodyCopy {
margin-bottom: 0;
}
.secService .flexArea {
border-bottom: 1px solid #C0D5E5;
align-items: center;
padding: 4% 0 4% 0;
}
.secService .flexArea:last-child {
border: none;
padding: 4% 0 0 0;
}
.secService .serviceImg{
line-height: 0;
width: 22%;
}
.secService .serviceList{
margin: 0;
padding: 0 5% 0  0;
width: 73%;
}
.secService .serviceList dt{
color: var(--color_main);
font-size: 24px;
font-weight: 600;
padding-bottom: 1%;
}
.secService .serviceList dd{
line-height: 1.9;
}
.secService .serviceList .note{
	color: #CC0000;
	font-size:0.88em;
	text-align: right;
}
@media screen and (max-width: 680px) {

.secService{
padding-left: 4%;
padding-right: 4%;
}


.secService .flexArea {
flex-direction: column;
padding: 40px 2.5vw;
}
.secService .flexArea:last-child {
padding: 40px 2.5vw 0;
}
.secService .serviceImg{
margin-bottom: 16px;
width: 60%;
max-width: 220px;
}
.secService .serviceList{
padding: 0;
width: 100%;
}
.secService .serviceList dt{
font-size: 20px;
padding-bottom: 4px;
}
.secService .serviceList dd{
line-height: 1.75;
}
}


/* secKadai
-------------------------------------------------------------- */
.kadaiList{
	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; }
}


/* secPlan
-------------------------------------------------------------- */

.secPlan{
padding-bottom: 4%;
padding-left: 0;
padding-right: 0;
}
.secPlan .hl1{
margin-bottom: 0;
}
.secPlan .planFlex{
display: flex;
justify-content: center;
margin: 0 auto;
max-width: 1000px;
}
.secPlan .planFlex .planBox{
background: #FFF;
border-radius: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.12);
margin: 0 1.25%;
padding: 2% 4% 4%;
width: 47%;
}
.secPlan .planFlex .planBox dt,
.secPlan .planFlex .planBox dd{
margin: 0;
padding: 0;
}
.secPlan .planFlex .planBox dt h3 .sub{
background: linear-gradient(270deg, rgba(218, 218, 218, 1) 0%, rgba(237, 237, 239, 1) 24%, rgba(208, 208, 208, 1) 49%, rgba(255, 255, 255, 1) 75%, rgba(202, 202, 202, 1) 100%);
border-radius: 30px;
color: #333;
display: inline-block;
font-size: 15px;
font-weight: 600;
line-height: 1.5;
letter-spacing: 0em;
margin-bottom: 4%;
padding: 6px 16px;
	-webkit-font-smoothing: antialiased;
}
.secPlan .planFlex .planBox dt h3 .title{
display: block;
font-family: var(--family-min);
font-size: 36px;
font-weight: bold;
line-height: 1.2;
letter-spacing: 0.08em;
text-align: center;
font-feature-settings: "palt";
}
.secPlan .planFlex .planBox dd .tax{
display: flex;
justify-content: center;
align-items: flex-end;
margin-bottom: 4px;
}
.secPlan .planFlex .planBox dd .tax .betsu{
background: var(--color_main);
color: #FFF;
display: inline-block;
font-size: 16px;
font-weight: 600;
letter-spacing: 0.04em;
line-height: 1;
margin-right: 12px;
padding: 4px 6px 6px;
transform: translateY(-6px);
}
.secPlan .planFlex .planBox dd .tax .price{
color: var(--color_main);
font-size: 32px;
font-weight: 600;
line-height: 1;
}
.secPlan .planFlex .planBox dd .tax .price strong{
font-size: 64px;
font-weight: bold;
line-height: 1;
margin-right: 4px;
}
.secPlan .planFlex .planBox dd .term{
display: flex;
justify-content: center;
align-items: center;
font-weight: 500;
margin: 0;
}
.secPlan .planFlex .planBox dd .term img{
margin-right: 4px;
}
.secPlan .planFlex .planBox dd .desc{
margin: 0;
line-height: 1.8;
}
.secPlan .planFlex .planBox.gold dt h3 .sub{
background: linear-gradient(90deg, rgba(175, 135, 56, 1) 0%, rgba(239, 230, 175, 1) 30%, rgba(220, 202, 131, 1) 55%, rgba(255, 253, 216, 1) 80%, rgba(200, 158, 70, 1) 100%);
}

@media screen and (min-width: 1023px) and (max-width: 1240px) {
.secPlan .planFlex .planBox dt h3 .sub{
font-size: 12px;
padding: 8px 16px;
}
.secPlan .planFlex .planBox dt h3 .title{
font-size: 30px;
}
.secPlan .planFlex .planBox dd .tax .betsu{
font-size: 18px;
margin-right: 8px;
}
.secPlan .planFlex .planBox dd .tax .price{
font-size: 32px;
}
.secPlan .planFlex .planBox dd .tax .price strong{
font-size: 50px;
}
}

@media screen and (max-width: 896px){
.secPlan{
padding-left: 7.5%;
padding-right: 7.5%;
}
.secPlan .planFlex{
flex-direction: column;
max-width: 540px;
margin: 0 auto;
}
.secPlan .planFlex .planBox{
margin: 0 0 8%;
padding: 20px 5vw 28px;
width: 100%;
}
.secPlan .planFlex .planBox dt h3 .sub{
font-size: 12px;
margin-bottom: 16px;
padding: 6px 16px;
}
.secPlan .planFlex .planBox dt h3 .title{
font-size: 30px;
}
.secPlan .planFlex .planBox dd .tax .betsu{
font-size: 16px;
margin-right: 8px;
}
.secPlan .planFlex .planBox dd .tax .price{
font-size: 24px;
}
.secPlan .planFlex .planBox dd .tax .price strong{
font-size: 48px;
}
.secPlan .planFlex .planBox.gold{
margin-bottom: 0;
}
}




/* 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: 680px) {
	.comtable th {
	line-height: 1.5;
white-space: nowrap;
	}
	.comtable td {
	line-height: 1.5;
	}
	.comtable td .noBorder tr td:nth-child(2) {display: inline;}
	.comtable td th {
		width: auto;
		vertical-align: top;
		white-space: nowrap;
	}
	.comtable td td + td {font-size: 0.88em;}
}
@media screen and (max-width: 480px) {
	.comtable td td {display: block;}
}


/* 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, #FF9D00 0%, #FFAF2E 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;}
