@charset "UTF-8";

/*====================

RESET/BASE

====================*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Yu Gothic", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	margin: 0 auto;
	padding: 0;
	overflow-x: hidden;
	width: 100% !important;
}

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%;
	vertical-align: baseline;
}

ul, li {
	list-style: none;
}

img {
	border:none;
	margin: 0;
	padding: 0;
	line-height: 0;
	vertical-align: bottom;
}

br {
	letter-spacing: 0;
}

/*------------------clearfix----------------- */
.clearfix:after {
	 content: ".";  
	display: block;
	 clear: both;
	height: 0;
	visibility: hidden; 
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
  /*\*//*/
 height: auto;
 overflow: hidden;
  /**/
}

/*------------------Flexbox------------------ */
.flex {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}

.f_direction_row {
  	-webkit-box-orient: horizontal;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: row-reverse;
  	flex-direction: row-reverse;
}

.f_justify_center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.f_justify_end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.f_justify_between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.f_justify_around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.f_align_start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;

}

.f_align_center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.f_align_base {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

.f_align_end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.f_direction_column {
    -webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
}

.f_direction_row {
  	-webkit-box-orient: horizontal;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: row-reverse;
  	flex-direction: row-reverse;
}


/*------------------other------------------ */
* {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}

a:hover {
	opacity: 0.6;
}

img {
	width:100%;
    height:auto;
}

.container {
    overflow: hiden;
}

/*====================

VIEW

====================*/

.sp_view {
	display:none;
}

@media screen and (max-width: 767px) {
.pc_view {
    display: none;
}
.sp_view {
    display: inline-block;
}
}

/*====================

CONTAINER

====================*/
#container {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}

@media screen and (max-width: 767px) {
#container {
    font-size: 14px;
}
}

/*====================

HEADER

====================*/

header {
    max-width:1400px;
    margin: auto;
    padding: 0 5% 2em;
}

header .logo {
    max-width:280px;
    margin:auto;
    padding:20px 0;
}

header h1 {
   position: relative;
}

header .top_heading {
  font-family: "游ゴシック","Yu Gothic","游ゴシック体",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  padding: 45px 0 65px;
  width: 780px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: 28px;
  display: block;
  position: relative;
  text-shadow: 0px 0px 12px rgba(0, 47, 114, 1);
  line-height: 1.5;
}
header .top_heading b.heading_inner{
    display: inline-block;
    font-size: 40px;
    font-feature-settings : "palt";
    letter-spacing: 1px;
}

header h1 span.mark_pic {
    display: inline-block;
    width:calc((200/1400)*100%);
    position: absolute;
    bottom:-25%;
    right:5%;
}

header .lead_wrap {
    max-width: 900px;
    margin: auto;
    padding:2.2em 0 0;
}

header .lead_wrap p {
    width:80%;
    font-size: 17px;
	line-height: 1.7;
    margin:0 auto 0 0;
}

header .p2_wrap .mark {
    width:calc((200/1400)*100%);
}

header .p2_wrap h1 {
    width:calc((1150/1400)*100%);
}

@media screen and (max-width: 1200px) {
header .lead_wrap p {
    font-size: 16px;
}
}
@media screen and (min-width: 768px) {
	header .lead_wrap {
		display: flex;
	}
	.pickup_pc {
		margin-left: 50px;
		display: block;
	}
	.pickup_pc img {
		width: 195px !important; 
		margin-top: 2px;
	}
}
@media screen and (max-width: 767px) {
	header {
		padding: 0 0 5%;
	}

	header h1 {
		padding: 0;
	}

	header .top_heading{
		padding: 5% 0 5%;
	}

	header .p2_wrap {
		display: block;
	}

	header .p2_wrap h1 {
		width:90%;
		margin: auto;
	}

	header .lead_wrap p {
		width:calc((345/375)*100%);
		font-size: 14px;
		margin:0 auto ;
	}
	.pickup_pc {
		display: none;
	}
}

@media screen and (max-width: 640px) {
    header .top_heading{
        font-size: 5vw;
    }
    header .top_heading b.heading_inner{
        font-size: 7vw;
    }
}

/*====================

top_heading

====================*/
.top_heading {
    max-width: 1000px;
    margin: auto;
    padding: 1em 5% 1em;
	text-align: center;
}

.top_heading h2{
    color: #e30210;
    font-size: 38px;
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
    padding: 0 0;
}

.top_type {
	text-align: center;
}
.top_type span	{
	color: #fff;
	background:#e30210;
	padding: 0 0.8em;
	line-height: 1.8em;
	display: inline-block;
	margin: 0 auto 0.5em auto;
	font-weight: bold;
	font-size: 120%;
	letter-spacing: 0.1em;

}
.top_type.top_type_solution span {
	letter-spacing: 0;
}
@media screen and (max-width: 640px) {
    .top_heading h2{
        font-size: 35px;
        font-size: 5.46875vw;
    }
}

/*====================

COLUMN

====================*/

.intro {
/*    background: #f0f0f0;*/
    max-width: 1000px;
    margin: 0 auto 3em; 
    padding: 2em 0 0;

}

.column {
    max-width: 1000px;
    margin: auto;
    padding: 3em 5% 1em;
}

.top_heading + .column {
    padding: 1em 5% 1em;
}
.column p{
    text-indent: 1em;
    padding: 0 0 2em;
}

.column p.i-0 {
	text-indent:0;
}

.column h2 {
    font-size: 34px;
    line-height: 1.5;
    font-weight: 600;
    /* text-align: center; */
    padding: 0 0 1em;
    border-bottom:1px solid #e30210;
    margin: 0 0 2em;
	text-align: center;
}

.column h2 span.ico {
    display: block;
    max-height: 76px;
    margin: 0 1em 0 0;
}

.column .box_l_1 {
    width:calc((650/1000)*100%);
}

.column .box_l_2 {
    width:calc((280/1000)*100%);
}


.column_box_s {
    max-width: 740px;
    margin: auto;
}

.column sup {
    font-size: 10px;
    vertical-align: top;
}

.column .cap {
    font-size: 12px;
    color:#666;
    line-height: 1.6;
    margin: 0 0 2em;
}

.column .cap li {
    text-indent: -2em;
    padding-left:2em;
}

/*----------------------------プロフィール*/
.column dl.prof {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 4em;
}

.column .prof dt {
    border-bottom:6px solid #e30210;
    margin: 0 0 1em;
}

.column .prof .name {
    font-weight: 700;
    font-size: 24px;
}

.column .prof .name spna {
    font-size: 16px;
}

@media screen and (max-width: 1000px) {
	.column h2 {
		font-size: 3vw;
	}

	.column .prof .name {
		font-size: 16px;
	}
}

@media screen and (max-width: 767px) {
.column {
    padding: 5%;
}

.column h2.flex {
    display: block;
}
.column h2 {
    font-size: 5vw;
    margin: 0 0 5%;
}

.column h2 span.ico {
    width:15%;
    margin: 0 0 1em;
}

.column_box_l {
    display: block;
}

.column .box_l_1 {
    width:100%;
}

.column .box_l_2 {
    width:80%;
    margin: auto;
}
.column dl.prof {
    margin: 0 0 2em;
}
}

/*====================

FIGURE

====================*/
.figure {
    margin: 1em auto 3em;
}
.figure:first-child {
	margin-top: 0;
}
.figure dt {
    font-size: 24px;
	line-height: 1.35;
    font-weight: 600;
    text-align: center;
    margin: 0 0 0.7em;
}

.figure dd.fig {
	text-align: center;
}
.figure dd.fig img{
    width: auto;
    max-width: 650px;
}
.figure dd.cap {
    font-size: 13px;
    color:#000;
    padding: 1.5em 0 0;
}

@media screen and (max-width: 767px) {
.figure dt {
    font-size: 4vw;
}
.figure dd.fig img {
	max-width: 100%;
}
.figure dd.cap {
    font-size: 12px;
}
}

/*====================

PROF

====================*/

.prof_wrap {
    border: 1px solid #000;
    padding: 1em;
    margin: 2em 0;
}

.prof_wrap .prof_ph {
    width:calc((300/740)*100%);
}

.prof_wrap dl {
    width:calc((400/740)*100%);
    font-size: 13px;
}

.prof_wrap dt {
    font-weight: 600;
    margin: 0 0 0.5em;
}

@media screen and (max-width: 767px) {
.prof_wrap.flex {
    display:block;
    padding: 8%;
    margin: 5% 0 0;
}

.prof_wrap .prof_ph {
    width:70%;
    margin: 0 auto 5%;
}

.prof_wrap dl {
    width:100%;
}
}
/*====================

INFO

====================*/

.info{
    background: #f0f0f0;
    max-width: 1400px;
    margin: 1em 0 0 0;
    padding: 5%;
    text-align: center;
    line-height: 1.6;
}

.info_cap {
    max-width: 740px;
    margin: 0 auto;
    padding: 10px 15px 0 15px ;
	font-size: 15px;
}
.info .logo {
    max-width: 200px;
    margin: 0 auto;
    padding: 0 0 30px 0;
}
.info dt {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0;
}

.info .info_address{
    margin-top: 1.5em;
}
.info .info_address dd{
    width: 16.725em;
    margin: 0 auto;
    text-align: left;
}

.info dd span {
    display: block;
}

.info a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
	.info{
		padding: 10% 0;
	}
	.info_txt {
		text-align: left;
	}
	.info dt {
		font-size: 15px;
	}
	.info dd {
		font-size: 13px;
	}	
	.info_cap {
		font-size: 12px;
	}
}
/*====================

BNR

====================*/

.bnr_wrap {
    max-width: 740px;
    margin: auto;
    padding: 0 5%;
}

/*----------------------------SPECIALの時*/
/*.bnr.next {
    background: #e30210;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    padding: 1em 0;
}

.bnr.next.spe span.ico {
    color:#000;
    display: block;
}*/
/*----------------------------SPECIALの時ここまで*/
/*----------------------------PICKUPの時*/
.bnr.next {
    background: #000;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    padding: 1em 0;
}
.bnr.next span.ico {
    color:#e30210;
    display: block;
}
/*----------------------------PICKUPの時ここまで*/
.bnr.next a {
    color: #fff;
    text-decoration: none;

}

.bnr.next a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.bnr.next span {
    display: inline-block;
    padding: 0 1em;
}


@media screen and (max-width: 767px) {
.bnr.next {
    font-size: 3vw;
}
}
/*====================

PAGER

====================*/
.pager {
    margin: 2em 0;
}
.pager li {
    border: 1px solid #222;
    color:#000;
    width:2em;
    text-align: center;
    font-weight: 500;
}

.pager li:first-child {
    margin: 0 0.5em 0 0;
}

.pager li.current {
    background: #000;
    color:#fff;
}

.pager a {
    text-decoration: none;
    color: #000;
    display: block;
}

.pager a:hover {
    background: #000;
    color: #fff;
    opacity: 1;
}

/*====================

NOTE

====================*/
p#note_text {
    font-size: 13px;
    text-indent: 0;
    line-height: 1.6;
    max-width: 740px;
    margin: auto;
}

@media screen and (max-width: 767px) {
p#note_text {
    font-size: 12px;
}
}
/*====================

PAGETOP

====================*/

.pagetop {
	text-align:right;
	padding:5% 5% 5% 0;
}

.pagetop img {
	max-width:60px;
}

@media screen and (max-width: 767px) {
.pagetop img {

}
}

/*====================

OTHERS

====================*/

.others {
	padding: 30px 0 50px;
}

.others li a {
	text-decoration: none;
	color: #000;
}
.others_txt-4 {
	font-size: 120%;
	padding-bottom: 15px;
	font-feature-settings : "palt";
}


.others li {
	padding: 20px 0;
} 

.others_txt_1 {
	font-size: 80%;
	color: #666;
}

.others_txt_2 {
	font-weight: bold;
	font-size: 108%;
	padding-bottom: 0.1em;
}
@media screen and (min-width: 768px) {
	.others {
		padding: 70px 0;
	}
	.others li a {
		display: flex;
		padding-right: 30px;
		align-items: center;
		position: relative;
	}
	.others_box_1 {
		margin-right: 35px;
	}
	.others_box_1 img {
		width: 120px;
	}
	.others a:after {
		content: "";
		width: 1.2em;
		height: 1.2em;
		position: absolute;
		top: calc(50% - 0.6em);
		right: 0;
		background: url("icn-right.svg") no-repeat center center;
		background-size: contain;
	}
	.others ul {
		border-top: 1px solid #ddd;
	}

	.others li {
		border-bottom: 1px solid #ddd;
	} 
}
@media screen and (max-width: 767px) {
	.others {
		padding: 5% 2.5%;
		flex-wrap: wrap;
	}
	.others ul {
		display: flex;
		flex-wrap: wrap;
	}
	.others li {
		padding: 0 0 15px  0;
		width: 44%;
		margin-left: auto;
		margin-right: auto;
	}
	.others_box_1 {
		padding-bottom: 10px;
		text-align: center;
	}
	.others_box_1 img {
		width: 70%;
	}
	.others_txt_2 br {
		display: none;
	}
	.others_txt_2 {
		font-size: 90%;
		line-height: 1.4;
		padding-bottom: 5px;
	}
	.others_txt_3 {
		font-size: 80%;
	}
	.others_txt-4 {
		padding-bottom: 15px;
		font-size: 110%;
		text-align: center;
	}
	
}


.mainv h1 {
	position: relative;
}
.mainv_sp_ttl {
	display: none;
}
.mainv_pc_ttl {
	width: 100%;
}
@media screen and (max-width: 950px) {
	.mainv_sp_ttl {
		width: 100%;
		display: block;
	}
	.mainv_pc_ttl {
		display: none;
	} 
}

/*LIST*/
.list {
	text-align: center;
	border: 5px solid #f0f0f0;
	padding: 20px 35px;
	max-width: 900px;
	box-sizing: border-box;
	margin-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
}

.list ul {

	text-align: left;
}
.list li {
	padding: 6px 0 6px 1em;
	position: relative;
	line-height: 1.35;
}
.list li::before {
	content: "";
	display: inline-block;
	width: 0.5em;
	height: 1.35em;
	background:url("icn_triangle.svg") no-repeat center center;
	background-size: contain;
	position: absolute;
	top:  6px;
	left: 0;
}

.st .list li.list_li_1::before,
.lot .list li.list_li_2::before,
.mcp .list li.list_li_3::before,
.keyence .list li.list_li_4::before,
.mk .list li.list_li_5::before{
	background:url("icn_triangle_2.svg") no-repeat center center;
	background-size: contain;
}

.list a {
	text-decoration: none;
	color: #000;
}

p.list_txt_1,
p.list_txt_2 {
	padding: 0;
	margin: 0;
	text-indent: 0;
	line-height: 1.35;
}

p.list_txt_2 {
	font-size: 90%;
	opacity: 0.8;
}

p.list_txt_1 {
	padding-bottom: 3px;
	font-weight: bold;
}

.list_txt_3 {
	font-size: 20px;
	padding-bottom: 0.2em;
}

.st .others_li_1,
.lot .others_li_2,
.mcp .others_li_3,
.keyence .others_li_4,
.mk .others_li_5 {
	display: none;
}

@media screen and (max-width: 767px) {
.list {
	margin-left: 2em;
	margin-right: 2em;
	padding: 15px;
}
.list li {
	padding:10px 0 0 1em;
}
.list li::before {
	top:  10px;
}
}

/*TOP SPEAKER*/

.top_speaker {
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
	padding: 1em 0;
	color: #e30210;
	font-size: 17px;
	font-feature-settings : "palt";
}

.top_speaker strong {
	font-size: 125%;
}

@media screen and (max-width: 767px) {
	.top_speaker {
		font-size: 14px;
	}
}

.top_speaker {
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
	padding: 1em 0;
	color: #e30210;
	font-size: 17px;
	font-feature-settings : "palt";
}

.top_speaker strong {
	font-size: 125%;
}

@media screen and (max-width: 767px) {
	.top_speaker {
		font-size: 14px;
	}
}

@media screen and (min-width: 768px) {
	.pc_none {
		display: none;
	}
}

.column_lf_1 {
	margin-top: -5em !important;
	padding-top: 0 !important;
}

@media screen and (max-width: 767px) {
	.column_lf_1 {
		margin-top: -1em !important;
	}
}

/*各回調整*/
@media screen and (min-width: 768px) {
	.lot .info .logo {
		max-width: 260px;
	}
	.mcp .info .logo {
		max-width: 400px;
	}
}
.mcp .figure  dt {
	margin-bottom: 0;
}

