@charset "UTF-8";


/***************************************************

	共通コンテンツ部

***************************************************/

:root {
	--text: #000;
	--color1: #0076A8;
	--color2: #FEDB00;
	--color_g: #a2a2a2;
}

html, body{
	margin:0; padding:0;
	box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color: var(--text);
	line-height: 1.75;
	font-family: "Noto Sans JP", sans-serif;
	word-wrap: break-word;
	word-break: normal; 
	overflow-wrap: break-word;
	background: #F3F3F4;
}

.en{
	font-family: "Source Sans 3", sans-serif;
}

a:visited,
a{
	color: var(--text);
	text-decoration: none;
	transition: all 0.2s linear;
}

a:hover{
	opacity: 0.7;
}

img{
	max-width: 100%;
	height: auto;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.pc-on{display: block;}
.sp-on{display: none;}

textarea,
input[type="checkbox"],
input[type="radio"],
input[type="email"],
input[type="tel"],
input[type="text"],
select{
  -webkit-appearance: none; /* Safari / Chrome */
  -moz-appearance: none;    /* Firefox */
  appearance: none;         /* 標準化 */
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;            /* フォントを親に合わせる */
  color: inherit;           /* 文字色を親に合わせる */
  line-height: normal;
  outline: none;            /* フォーカス枠を消す */
  box-shadow: none;
  background-color: transparent;
}



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

header{
	padding: 0 24px;
	background: #fff;
	border-radius: 0 0 20px 20px;
	box-shadow: 8px 8px 24px 0 rgba(0, 0, 0, 0.10);
	line-height: 1;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

header .header_wrapper{
	width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

header .header_wrapper .logo{
	width: 136px;
}

header .header_wrapper .logo a{
	display: block;
}

header .header_wrapper .logo img{
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

header .header_wrapper .menu_area{

}

header .header_wrapper .menu_area .menu_wrapp{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;	
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul li{
	margin-right: 24px;
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul li a{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
	color: var(--text);
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul li.current a{
	color: #A2A2A2;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li{
	margin-right: 24px;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li > a{
	display: inline-block;
	width: 143px;
	height: 48px;
	line-height: 48px;
	border-radius: 48px;
	padding: 0;
	background: linear-gradient(315deg, #EEE 0%, #FFF 100%);
	box-shadow: -2px -2px 2px 0 rgba(153, 153, 153, 0.60) inset, 1px 2px 2px 0 rgba(153, 153, 153, 0.15), 1px 1px 3px 0 rgba(0, 0, 0, 0.10);
	font-size: 12px;
	letter-spacing: 0.04em;
	color: var(--text);
	text-align: center;
	position: relative;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp li.list a{
	background: linear-gradient(315deg, #D4E8F1 0%, #F9FDFF 100%);
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li > a::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 48px;
	background: linear-gradient(315deg, #EEE 0%, #D0D0D0 100%);
	transition: opacity 0.2s ease;
	opacity: 0;
	box-shadow: 1px 2px 2px 0 rgba(255, 255, 255, 0.50), 2px 2px 4px 0 rgba(0, 0, 0, 0.10) inset;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li > a:hover,
header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li > a:hover::before{
	opacity: 1;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp li a strong{
	display: block;
	font-weight: 400;
	padding-left: 28px;
	box-sizing: border-box;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	white-space: nowrap;
    z-index: 3;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp li a strong::before{
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/icon_mail.png');
	position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp li.list a strong::before{
	background-image: url('../images/common/icon_list.png');
}

header .header_wrapper .menu_area .menu_wrapp .lang_area{

}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    padding-left: 20px;
    position: relative;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul::before{
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/icon_lang.png');
	position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li{
	padding: 0 6px 0 0;
	border-right: 1px solid var(--color_g);
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li:last-child{
	padding: 0 0 0 6px;
	border-right: none;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li .btn{
	font-size: 16px;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.04em;
	color: var(--text);
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li a.btn{
	font-weight: 400;
	color: var(--color_g);
}



/*------- フッター -------*/

footer{
	margin-top: -20px;
	padding: 64px 0 80px;
	background: #fff;
	border-radius: 20px 20px 0 0;
	position: relative;
	z-index: 20;
}

footer .footer_wrapper{
	width: 1152px;
	margin: 0 auto;
}

footer .footer_wrapper .f_contact_area{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #eee;
}

footer .footer_wrapper .f_contact_area .text_area{
	width: 312px;
}

footer .footer_wrapper .f_contact_area .text_area .catch{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.04em;
	color: var(--color1);
	margin-bottom: 32px;
	position: relative;
}

footer .footer_wrapper .f_contact_area .text_area .catch::after{
	content: '';
	display: inline-block;
	width: 40px;
	height: 1px;
	background: var(--color1);
	position: absolute;
    bottom: -16px;
    left: 0;
}

footer .footer_wrapper .f_contact_area .text_area .caption{
	font-size: 20px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
}


footer .footer_wrapper .f_contact_area .link_area{
	width: 760px;
}

footer .footer_wrapper .f_contact_area .link_area ul{

}

footer .footer_wrapper .f_contact_area .link_area ul li{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	border-radius: 12px;
	padding: 33px 0 26px 100px;
	background: var(--color2);
}

footer .footer_wrapper .f_contact_area .link_area ul li:last-child{
	margin-bottom: 0;
}

footer .footer_wrapper .f_contact_area .link_area ul li.phone{
	background: var(--color1);
	color: #fff;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box{
	width: 310px;
	text-align: center;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box .main{
	margin-bottom: 7px;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box .main strong{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.04em;
	padding-left: 44px;
	position: relative;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box .main strong::before{
	content: '';
	display: inline-block;
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/icon_mail.png');
	position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

footer .footer_wrapper .f_contact_area .link_area ul li.phone .left_box .main strong::before{
	background-image: url('../images/common/icon_phone.png');
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box .sub{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box{
	width: calc(100% - 310px);
	padding-left: 64px;
	box-sizing: border-box;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box a{
	display: inline-block;
	width: 193px;
	height: 48px;
	border-radius: 48px;
	background: linear-gradient(315deg, #EEE 0%, #FFF 100%);
	box-shadow: -2px -2px 2px 0 rgba(153, 153, 153, 0.60) inset, 1px 2px 2px 0 rgba(153, 153, 153, 0.15), 1px 1px 3px 0 rgba(0, 0, 0, 0.10);
	color: var(--text);
	position: relative;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box a:hover{
	opacity: 1;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box a::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 48px;
	background: linear-gradient(315deg, #EEE 0%, #D0D0D0 100%);
	transition: opacity 0.2s ease;
	opacity: 0;
	box-shadow: 1px 2px 2px 0 rgba(255, 255, 255, 0.50), 2px 2px 4px 0 rgba(0, 0, 0, 0.10) inset;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box a:hover::before{
	opacity: 1;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box a strong{
	font-size: 12px;
	font-weight:400;
	letter-spacing: 0.04em;
	padding-right: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box a strong::after{
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/icon_arrow01.png');
	position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box .phone .num{
	font-size: 32px;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.04em;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box .phone .note{
	font-size: 12px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
	margin: -12px 0 0 30px;
}

footer .footer_wrapper .footer_bottom{
	display: flex;
}

footer .footer_wrapper .footer_bottom .left_box{
	width: calc(100% - 505px);
}

footer .footer_wrapper .footer_bottom .left_box p{
	font-size: 12px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
}

footer .footer_wrapper .footer_bottom .right_box{
	width: 505px;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: flex-start;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .logo{
	width: 226px;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data{
	width: 239px;
	padding-top: 20px;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_item{
	font-size: 12px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
	margin-bottom: 4px;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_name{
	font-size: 16px;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.04em;
	margin-bottom: 4px;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .add{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
	margin-bottom: 24px;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_link{
	margin-bottom: 24px;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_link a{
	display: inline-block;
	width: 127px;
	height: 48px;
	line-height: 44px;
	border-radius: 48px;
	border: 1px solid var(--color1);
	color: var(--color1);
	position: relative
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_link a::after{
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/icon_link.png');
	position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_link a strong{
	font-size: 12px;
	font-weight: 400;
	margin-left: 20px;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .copyright{
	font-size: 12px;
	font-weight: 400;
	line-height: 1.75;
	color: var(--color_g);
}


footer.contact_footer{
	margin-top: 54px;
	padding: 0 0 24px;
	background: transparent;;
	border-radius: 0;
}

footer.contact_footer .logo{
	width: 226px;
	margin: 0 auto 24px;
}

footer.contact_footer .copyright{
	font-size: 12px;
	font-weight: 700;
	color: #a2a2a2;
	letter-spacing: 0.04em;
	text-align: center;
}



/*------- コンテンツ -------*/

main{
	padding: 72px 0 20px; 
}


.search_console{
	width: 1152px;
	margin: 0 auto;
	padding: 64px;
	background: #fff;
	border-radius: 20px;
	box-sizing: border-box;
	line-height: 1;
	box-shadow: 8px 8px 24px 0 rgba(0, 0, 0, 0.10);
}

.search_console .sub_title{
    font-size: 36px;
	font-weight: 400;
	color: #0076A8;
	letter-spacing: 0.04em;
	margin-bottom: 52px;
	position: relative;
}

.search_console .sub_title::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--color1);
    position: absolute;
    bottom: -12px;
    left: 0;
}

.search_console .search_caption{
	font-size: 14px;
	color: #FF3636;
	line-height: 1.75;
	letter-spacing: 0.04em;
	margin-bottom: 20px;
}


.search_console .main_title{
    font-size: 36px;
    font-weight: 400;
    color: #0076A8;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
}

.search_console .search_ul{

}

.search_console .search_ul li{
	display: flex;
	padding: 16px 0 8px;
	border-top: 1px solid #eee;
}

.search_console .search_ul li:last-child{
	border-bottom: 1px solid #eee;
}

.search_console .search_ul li .item{
	width: 160px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.search_console .search_ul li .list_area{
	width: calc(100% - 160px);
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.search_console .sub_area .search_ul li {

}

.search_console .sub_area .search_ul li .item{
	width: 280px;
	padding-top: 14px;
}

.search_console .sub_area .search_ul li .list_area{
	width: calc(100% - 280px);
}

.search_console .search_ul li .list_area .btn_wrapp{
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}


/********** 形状 **********/

.search_console .search_ul li.shape .list_area label{
	display: inline-block;
	width: 206px;
	margin: 0 8px 8px 0;
	cursor: pointer;
}

.search_console .search_ul li.shape .list_area label input{
	display: none;
}

.search_console .search_ul li.shape .list_area label .btn_wrapp{
	height: 58px;
	border-radius: 58px;
	padding: 8px;
	border: 1px solid #DCDCDC;
}

.search_console .search_ul li.shape .list_area label .flex{
	display: flex;
	align-items: center;
}

.search_console .search_ul li.shape .list_area label .flex .img_area{
	width: 40px;
	height: 40px;
	overflow: hidden;
}

.search_console .search_ul li.shape .list_area label .flex .img_area img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.search_console .search_ul li.shape .list_area label .flex .text_area{
	width: calc(100% - 40px);
	padding-left: 4px;
	box-sizing: border-box;
}

.search_console .search_ul li.shape .list_area label .flex .text_area .shape_iso{
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
}

.search_console .search_ul li.shape .list_area label .flex .text_area .shape_name{
	display: block;
	font-size: 9px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
}

.search_console .search_ul li.shape .list_area label.select_all .flex .text_area .shape_name,
.search_console .search_ul li.shape .list_area label.other .flex .text_area .shape_name{
	font-size: 16px;
	padding-left: 8px;
}


/********** 粒径 **********/

.search_console .search_ul li.particle{
	padding-bottom: 1px;
}

.search_console .search_ul li.particle .list_area label{
	display: inline-block;
	width: 200px;
	margin: 0 16px 16px 0;
	cursor: pointer;
}

.search_console .search_ul li.particle .list_area label input{
	display: none;
}

.search_console .search_ul li.particle .list_area label .btn_wrapp{
	height: 55px;
	border-radius: 55px;
	padding: 8px 16px;
	border: 1px solid #DCDCDC;
}

.search_console .search_ul li.particle .list_area label .flex{
	display: flex;
	align-items: center;
}

.search_console .search_ul li.particle .list_area label .flex .color_area{
	width: 24px;
	height: 100%;
	position: relative;
}

.search_console .search_ul li.particle .list_area label .flex .color_area .color_box{
	display: block;
	width: 100%;
	height: 24px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.search_console .search_ul li.particle .list_area label .flex .text_area{
	width: calc(100% - 24px);
	padding-left: 8px;
	box-sizing: border-box;
}

.search_console .search_ul li.particle .list_area label .flex .text_area .particle_name{
	display: block;
	font-size:11px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
}

.search_console .search_ul li.particle .list_area label .flex .text_area .size{
	display: block;
	font-size:10px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
}


/********** 用途 **********/
/********** 品番 **********/
/********** 許容回転数 **********/
/********** セット **********/

.search_console .search_ul li.item_set,
.search_console .search_ul li.item_rotation_speed,
.search_console .search_ul li.code_head,
.search_console .search_ul li.recommended_use{
	padding-bottom: 1px;
}

.search_console .search_ul li.item_set .list_area  label,
.search_console .search_ul li.item_rotation_speed .list_area  label,
.search_console .search_ul li.code_head .list_area  label,
.search_console .search_ul li.recommended_use .list_area label{
	display: inline-block;
	margin: 0 16px 16px 0;
	cursor: pointer;
}

.search_console .search_ul li.item_set .list_area  label input,
.search_console .search_ul li.item_rotation_speed .list_area  label input,
.search_console .search_ul li.code_head .list_area  label input,
.search_console .search_ul li.recommended_use .list_area label input{
	display: none;
}

.search_console .search_ul li.item_set .list_area  label .btn_wrapp,
.search_console .search_ul li.item_rotation_speed .list_area  label .btn_wrapp,
.search_console .search_ul li.code_head .list_area  label .btn_wrapp,
.search_console .search_ul li.recommended_use .list_area label .btn_wrapp{
	display: inline-block;
	min-width: 72px;
	padding: 8px 16px;
	border-radius: 50px;
	border: 1px solid #DCDCDC;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.75;
	text-align: center;
}

.search_console .search_ul li.item_rotation_speed .list_area  label .btn_wrapp sup{
	font-size: 0.8em;
	vertical-align: super;
	position: relative;
}


/********** サブメニュー開閉 **********/

.search_console .sub_area{

}

.search_console .sub_area .toggle_btn_area{
	padding: 43px 0;
	text-align: center;
}

.search_console .sub_area .toggle_btn_area .toggle_btn{
	display: inline-block;
	font-size: 14px;
	color: var(--color1);
	line-height: 1.75;
	letter-spacing: 0.04em;
	padding-left: 40px;
	position: relative;
	cursor: pointer;
}

.search_console .sub_area .toggle_btn_area .toggle_btn::before{
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    background-image: url(../images/common/icon_plus.png);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.search_console .sub_area .toggle_btn_area .toggle_btn.toggle_btn_close::before{
    background-image: url(../images/common/icon_minus.png);
}

.search_console .search_ul li .list_area label .btn_wrapp.active{
	border: 1px solid #0076A8;
	background: #CCE4EE;
	color: #005D84;
}


/********** 最大 **********/
/********** 作業長 **********/

.search_console .search_ul li .list_area  .select_wrapp{
	display: flex;
    align-items: center;
}

.search_console .search_ul li .list_area  .select_wrapp .select_data{
	display: flex;
	justify-content: space-between;
    align-items: center;
}


.search_console .search_ul li .list_area  .select_wrapp .select_data .select_box{
	min-width: 100px;
	height: 48px;
	position: relative;
	z-index: 2;
}

.search_console .search_ul li .list_area  .select_wrapp .select_data .select_box::after{
	content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    background-image: url(../images/common/icon_arrow_down01.png);
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translate(0, -50%);
    z-index: -1;
}


.search_console .search_ul li .list_area  .select_wrapp .select_data select{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
	width: 100%;
	height: 48px;
	border: 1px solid #DCDCDC;
	border-radius: 8px;
	padding: 8px 48px 8px 16px;
	font-size: 12px;
	color: #8f8f8f;
	letter-spacing: 0.04em;
	position: relative;
	box-sizing: border-box;
}

.search_console .search_ul li .list_area  .select_wrapp .select_data .selected select{
	color: #000;
	font-weight: 500;
}

.search_console .search_ul li .list_area  .select_wrapp .select_data small{
	display: inline-block;
    font-size: 12px;
    letter-spacing: 0.04em;
    margin-left: 8px;
}

.search_console .search_ul li .list_area  .select_item{
	display: inline-block;
    font-size: 12px;
    letter-spacing: 0.04em;
    margin: 0 16px;	
}


/********** 検索ボタン **********/

.search_console .search_btn{
	width: 320px;
	height: 64px;
	margin: 40px auto 0;
	position: relative;
}

.search_console .search_btn button{
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	z-index: 5;
}

.search_console .search_btn .submit_btn{
	display: block;
	width: 100%;
	height: 64px;
	line-height: 64px;
	border-radius: 64px;
	padding: 0;
	background: linear-gradient(315deg, #D4E8F1 0%, #F9FDFF 100%);
	box-shadow: -2px -2px 2px 0 rgba(153, 153, 153, 0.60) inset, 1px 2px 2px 0 rgba(153, 153, 153, 0.15), 1px 1px 3px 0 rgba(0, 0, 0, 0.10);
	font-size: 14px;
	letter-spacing: 0.04em;
	color: var(--text);
	text-align: center;
	position: relative;
}

.search_console .search_btn .submit_btn::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 64px;
	background: linear-gradient(315deg, #EEE 0%, #D0D0D0 100%);
	transition: opacity 0.2s ease;
	opacity: 0;
	box-shadow: 1px 2px 2px 0 rgba(255, 255, 255, 0.50), 2px 2px 4px 0 rgba(0, 0, 0, 0.10) inset;
}

.search_console .search_btn:hover .submit_btn::before{
	opacity: 1;
}

.search_console .search_btn .submit_btn::after{
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/icon_arrow01.png');
	position: absolute;
    top: 50%;
    right: 12px;
    transform: translate(0, -50%);
}

.search_console .search_btn .submit_btn strong{
	display: block;
	font-weight: 400;
	box-sizing: border-box;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	white-space: nowrap;
    z-index: 3;
}



.search_console .reset_btn{
	width: 144px;
	height: 37px;
	border-radius: 37px;
	margin: 24px auto 0;
	background: linear-gradient(315deg, #EEE 0%, #FFF 100%);
	box-shadow: -2px -2px 2px 0 rgba(153, 153, 153, 0.60) inset, 1px 2px 2px 0 rgba(153, 153, 153, 0.15), 1px 1px 3px 0 rgba(0, 0, 0, 0.10);
	position: relative;
	transition: all 0.2s linear;
	cursor: pointer;
}

.search_console .reset_btn:hover{
	opacity: 0.8;
}

.search_console .reset_btn strong{
	font-size: 12px;
	font-weight: 400;
	box-sizing: border-box;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	white-space: nowrap;
    z-index: 3;
}






/********** モーダル **********/

.modal_container {
    display: none; /* 初期は非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* 半透明背景 */
    z-index: 1000;
    overflow: auto;
    justify-content: center;
    align-items: center;
}

.modal_container .data_wrapp {
    background: #fff;
    padding: 20px;
    margin: 50px auto;
    position: relative;
    border-radius: 8px;
}

.modal_container .close {
    width: 44px;
    height: 44px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/icon_modal_close.png');
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.cont_scroll {
	height: 80%;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	border-radius: 3.2vw;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


.image_wrapp {
	width: 100%;
	height: 100%;
  position: relative;
  display: inline-block;
}

.zoom_lens {
  position: absolute;
  border: 2px solid #0076A8;
  /*border-radius: 50%;*/
  width: 200px;
  height: 200px;
  background-color: #fff;
  pointer-events: none;
  display: none;
  background-repeat: no-repeat;
  background-size: 800px 800px; /* 拡大サイズを調整 */
  /*box-shadow: 0px 0px 17px -2px #b5b5b5;*/
}

.zoom_lens::after{
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/icon_zoom_frame.png');
	position: absolute;
	top: -12px;
	left: -12px;
}


.zoom2_active .zoom_lens {
  display: block;
}


/********** ページ共通 **********/

.base_bg{
	position: relative;
}

.base_bg::before{
    content: '';
    display: block;
    width: 100%;
    height: 1651px;
    /*background: linear-gradient(22deg, #F3F3F3 51.01%, #B1E5FB 70.23%, #96E7D4 74.87%, #FEDB00 100%);*/    
	background: linear-gradient(22deg, #F3F3F3 76.01%, #B1E5FB 85.23%, #96E7D4 88.87%, #FEDB00 100%);
    position: absolute;
    top: -72px;
    left: 0;
    right: 0;
    z-index: -1;
}

.page_head{
	width: 1024px;
	margin: 0 auto 64px;
	padding-top: 66px;
}

.page_head .sub_title {
    font-size: 16px;
    font-weight: 500;
    color: #0076A8;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    position: relative;
}

.page_head .sub_title::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--color1);
    position: absolute;
    bottom: -12px;
    left: 0;
}

.page_head h1{
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.04em;
}


.seart_menu_toggle{
	width: 1024px;
	margin: 0 auto -36px;
	background: #fff;
	box-shadow: 8px 8px 24px 0 rgba(0, 0, 0, 0.10);
	border-radius: 20px;
}

.seart_menu_toggle .menu_toggle_btn{
	height: 80px;
	line-height: 80px;
	text-align: center;
	background: linear-gradient(315deg, #EEE 0%, #FFF 100%);
	box-shadow: -2px -2px 2px 0 rgba(153, 153, 153, 0.60) inset, 1px 2px 2px 0 rgba(153, 153, 153, 0.15), 1px 1px 3px 0 rgba(0, 0, 0, 0.10);
	border-radius: 20px;
	position: relative;
	cursor: pointer;
}

.seart_menu_toggle .menu_toggle_btn::after{
	content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    background-image: url(../images/common/icon_plus2.png);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
}

.seart_menu_toggle .menu_toggle_btn.active::after{
    background-image: url(../images/common/icon_minus_2.png);
}

.seart_menu_toggle .menu_toggle_btn p{
	font-size: 16px;
	letter-spacing: 0.04em;
}

.seart_menu_toggle .menu_toggle_body{
	display: none;
}

.seart_menu_toggle .menu_toggle_body .search_console{
	width: 100%;
	padding: 32px 40px 64px;
	box-shadow: none;
}



/*------- 認証 -------*/

.certification_modal {
	display: none;
    position: fixed !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.4);
}

.certification_cont{
	width: 826px;
	background: #fff;
	border-radius: 20px;
	padding: 64px;
	box-sizing: border-box;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.certification_cont .title{
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-align: center;
	margin-bottom: 20px;
}

.certification_cont .caption{
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.04em;
	margin-bottom: 40px;
}

.certification_cont .btn_catch{
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-align: center;
	margin-bottom: 20px;
}

.certification_cont .btn_ul{
	display: flex;
	justify-content: center;
    align-items: center;
}

.certification_cont .btn_ul li{
	margin: 0 10px;
}

.certification_cont .btn_ul li a{
	display: block;
	width: 120px;
	height: 48px;
	border-radius: 48px;
	background: linear-gradient(315deg, #D4E8F1 0%, #F9FDFF 100%);
	box-shadow: -2px -2px 2px 0 rgba(153, 153, 153, 0.60) inset, 1px 2px 2px 0 rgba(153, 153, 153, 0.15), 1px 1px 3px 0 rgba(0, 0, 0, 0.10);
	position: relative;
}

.certification_cont .btn_ul li a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 48px;
    background: linear-gradient(315deg, #EEE 0%, #D0D0D0 100%);
    transition: opacity 0.2s ease;
    opacity: 0;
    box-shadow: 1px 2px 2px 0 rgba(255, 255, 255, 0.50), 2px 2px 4px 0 rgba(0, 0, 0, 0.10) inset;
}

.certification_cont .btn_ul li a:hover::before {
    opacity: 1;
}

.certification_cont .btn_ul li a strong{
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.04em;
	padding-right: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	white-space: nowrap;
}

.certification_cont .btn_ul li a strong::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    background-image: url(../images/common/icon_arrow01.png);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}



/********** 404 **********/

.notfound{
	padding: 80px 0;
}

.notfound .notfond_wrapp{
	width: 1152px;
	padding: 64px;
	margin: 0 auto;
	box-sizing: border-box;
	background: #fff;
	border-radius: 20px;
	text-align: center;
}

.notfound .notfond_wrapp .catch_area{
	margin-bottom: 24px;
}

.notfound .notfond_wrapp .catch_area .main{
	font-size: 80px;
	font-weight: 400;
	color: #0076A8;
	line-height: 1.1;
	letter-spacing: 0.04em;
}

.notfound .notfond_wrapp .catch_area .sub{
	font-size: 20px;
	font-weight: 700;
	color: #0076A8;
	line-height: 1.3;
	letter-spacing: 0.04em;
}

.notfound .notfond_wrapp .caption{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
	margin-bottom: 24px;
}

.notfound .notfond_wrapp .link_btn{
	width: 143px;
	margin: 0 auto;
}

.notfound .notfond_wrapp .link_btn a{
	display: inline-block;
	width: 100%;
    height: 45px;
    border-radius: 45px;
	background: linear-gradient(315deg, #EEE 0%, #FFF 100%);
	box-shadow: -2px -2px 2px 0 rgba(153, 153, 153, 0.60) inset, 1px 2px 2px 0 rgba(153, 153, 153, 0.15), 1px 1px 3px 0 rgba(0, 0, 0, 0.10);
	text-align: center;
    position: relative;
	cursor: pointer;
	transition: all 0.2s linear;
}

.notfound .notfond_wrapp .link_btn a::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 45px;
	background: linear-gradient(315deg, #EEE 0%, #D0D0D0 100%);
	transition: opacity 0.2s ease;
	opacity: 0;
	box-shadow: 1px 2px 2px 0 rgba(255, 255, 255, 0.50), 2px 2px 4px 0 rgba(0, 0, 0, 0.10) inset;
}

.notfound .notfond_wrapp .link_btn a:hover::before{
	opacity: 1;
}

.notfound .notfond_wrapp .link_btn a strong{
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.04em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	white-space: nowrap;
}










/********************************************************************************
	リッキド用 CSS
********************************************************************************/

@media(max-width:1328px){


header{
	padding: 0 1.807229vw;
	border-radius: 0 0 1.506024vw 1.506024vw;
	box-shadow: 0.60241vw 0.60241vw 1.807229vw 0 rgba(0, 0, 0, 0.10);
}

header .header_wrapper{
	width: 96.385542vw;
}

header .header_wrapper .logo{
	width: 10.240964vw;
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul li{
	margin-right: 1.807229vw;
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul li a{
	font-size: 1.054217vw;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li{
	margin-right: 1.807229vw;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li > a{
	width: 10.768072vw;
	height: 3.614458vw;
	line-height: 3.614458vw;
	border-radius: 3.614458vw;
	box-shadow: -0.150602vw -0.150602vw 0.150602vw 0 rgba(153, 153, 153, 0.60) inset, 1px 0.150602vw 0.150602vw 0 rgba(153, 153, 153, 0.15), 1px 1px 0.225904vw 0 rgba(0, 0, 0, 0.10);
	font-size: 0.903614vw;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li > a::before{
	border-radius: 3.614458vw;
	box-shadow: 1px 0.150602vw 0.150602vw 0 rgba(255, 255, 255, 0.50), 0.150602vw 0.150602vw 0.301205vw 0 rgba(0, 0, 0, 0.10) inset;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp li a strong{
	padding-left: 2.108434vw;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp li a strong::before{
	width: 1.807229vw;
	height: 1.807229vw;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul{
    padding-left: 1.506024vw;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul::before{
	width: 1.355422vw;
	height: 1.355422vw;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li{
	padding: 0 0.451807vw 0 0;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li:last-child{
	padding: 0 0 0 0.451807vw;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li .btn{
	font-size: 1.204819vw;
}



}


@media(max-width:1280px){

body{
	font-size: 1.25vw;
}

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

header{
	padding: 0 1.875vw;
	border-radius: 0 0 1.5625vw 1.5625vw;
	box-shadow: 0.625vw 0.625vw 1.875vw 0 rgba(0, 0, 0, 0.10);
}

header .header_wrapper{
	width: 100%;
}

header .header_wrapper .logo{
	width: 10.625vw;
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul li{
	margin-right: 1.875vw;
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul li a{
	font-size: 1.09375vw;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li{
	margin-right: 1.875vw;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li > a{
	width: 11.171875vw;
	height: 3.75vw;
	line-height: 3.75vw;
	border-radius: 3.75vw;
	font-size: 0.9375vw;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li > a::before{
	border-radius: 3.75vw;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp li a strong{
	padding-left: 2.1875vw;
}


header .header_wrapper .menu_area .menu_wrapp .btn_wrapp li a strong::before{
	width: 1.875vw;
	height: 1.875vw;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul{
    padding-left: 1.5625vw;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul::before{
	width: 1.40625vw;
	height: 1.40625vw;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li{
	padding: 0 0.46875vw 0 0;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li:last-child{
	padding: 0 0 0 0.46875vw;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li .btn{
	font-size: 1.25vw;
}



/*------- フッター -------*/

footer{
	margin-top: -1.5625vw;
	padding: 5vw 0 6.25vw;
	border-radius: 1.5625vw 1.5625vw 0 0;
}

footer .footer_wrapper{
	width: 90vw;
}

footer .footer_wrapper .f_contact_area{
	margin-bottom: 3.125vw;
	padding-bottom: 3.125vw;
}

footer .footer_wrapper .f_contact_area .text_area{
	width: 24.375vw;
}

footer .footer_wrapper .f_contact_area .text_area .catch{
	font-size: 1.25vw;
	margin-bottom: 2.5vw;
}

footer .footer_wrapper .f_contact_area .text_area .catch::after{
	width: 3.125vw;
    bottom: -1.25vw;
}

footer .footer_wrapper .f_contact_area .text_area .caption{
	font-size: 1.5625vw;
}

footer .footer_wrapper .f_contact_area .link_area{
	width: 59.375vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li{
	margin-bottom: 1.5625vw;
	border-radius: 0.9375vw;
	padding: 2.578125vw 0 2.03125vw 7.8125vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box{
	width: 24.218750vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box .main{
	margin-bottom: 0.546875vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box .main strong{
	font-size: 1.5625vw;
	padding-left: 3.4375vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box .main strong::before{
	width: 3.125vw;
	height: 3.125vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box .sub{
	font-size: 1.25vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box{
	width: calc(100% - 24.218750vw);
	padding-left: 5vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box a{
	width: 15.078125vw;
	height: 3.75vw;
	line-height: 3.28125vw;
	border-radius: 3.75vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box a strong{
	font-size: 0.9375vw;
    padding-right: 2.8125vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box a strong::after{
	width: 1.875vw;
	height: 1.875vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box .phone .num{
	font-size: 2.5vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box .phone .note{
	font-size: 0.9375vw;
	margin: -0.9375vw 0 0 2.34375vw;
}

footer .footer_wrapper .footer_bottom .left_box{
	width: calc(100% - 39.453125vw);
}

footer .footer_wrapper .footer_bottom .left_box p{
	font-size: 0.9375vw;
}

footer .footer_wrapper .footer_bottom .right_box{
	width: 39.453125vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .logo{
	width: 17.65625vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data{
	width: 18.671875vw;
	padding-top: 1.5625vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_item{
	font-size: 0.9375vw;
	margin-bottom: 0.3125vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_name{
	font-size: 1.25vw;
	margin-bottom: 0.3125vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .add{
	font-size: 1.09375vw;
	margin-bottom: 1.875vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_link{
	margin-bottom: 1.875vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_link a{
	width: 9.921875vw;
	height: 3.75vw;
	line-height: 3.4375vw;
	border-radius: 3.75vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_link a::after{
	width: 1.875vw;
	height: 1.875vw;
    right: 1.5625vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_link a strong{
	font-size: 0.9375vw;
	margin-left: 1.5625vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .copyright{
	font-size: 0.9375vw;
}


footer.contact_footer{
	margin-top: 4.21875vw;
	padding: 0 0 1.875vw;
}

footer.contact_footer .logo{
	width: 17.65625vw;
	margin: 0 auto 1.875vw;
}

footer.contact_footer .copyright{
	font-size: 0.9375vw;
}


/*------- コンテンツ -------*/

main{
	padding: 5.625vw 0 1.5625vw; 
}


.search_console{
	width: 90vw;
	padding: 5vw;
	border-radius: 1.5625vw;
}

.search_console .sub_title{
	font-size: 2.8125vw;
	margin-bottom: 4.0625vw;
}

.search_console .sub_title::after {
    width: 3.125vw;
    bottom: -0.9375vw;
}

.search_console .search_caption{
	font-size: 1.09375vw;
	margin-bottom: 1.5625vw;
}

.search_console .main_title{
    font-size: 3.125vw;
    margin-bottom: 3.125vw;
}

.search_console .search_ul li{
	padding: 1.25vw 0 0.625vw;
}

.search_console .search_ul li .item{
	width: 12.5vw;
	font-size: 1.09375vw;
}

.search_console .search_ul li .list_area{
	width: calc(100% - 12.5vw);
}

.search_console .sub_area .search_ul li .item{
	width: 21.875vw;
	padding-top: 1.09375vw;
}

.search_console .sub_area .search_ul li .list_area{
	width: calc(100% - 21.875vw);
}



/********** 形状 **********/

.search_console .search_ul li.shape .list_area label{
	width: 16.09375vw;
	margin: 0 0.625vw 0.625vw 0;
}

.search_console .search_ul li.shape .list_area label .btn_wrapp{
	height: 4.53125vw;
	border-radius: 4.53125vw;
	padding: 0.625vw;
}

.search_console .search_ul li.shape .list_area label .flex .img_area{
	width: 3.125vw;
	height: 3.125vw;
}

.search_console .search_ul li.shape .list_area label .flex .text_area{
	width: calc(100% - 3.125vw);
	padding-left: 0.3125vw;
}

.search_console .search_ul li.shape .list_area label .flex .text_area .shape_iso{
	font-size: 0.9375vw;
}

.search_console .search_ul li.shape .list_area label .flex .text_area .shape_name{
	font-size: 0.703125vw;
}

.search_console .search_ul li.shape .list_area label.select_all .flex .text_area .shape_name,
.search_console .search_ul li.shape .list_area label.other .flex .text_area .shape_name{
	font-size: 1.25vw;
	padding-left: 0.625vw;
}


/********** 粒径 **********/

.search_console .search_ul li.particle{

}

.search_console .search_ul li.particle .list_area label{
	width: 15.625vw;
	margin: 0 1.25vw 1.25vw 0;
}

.search_console .search_ul li.particle .list_area label .btn_wrapp{
	height: 4.296875vw;
	border-radius: 4.296875vw;
	padding: 0.625vw 1.25vw;
}

.search_console .search_ul li.particle .list_area label .flex .color_area{
	width: 1.875vw;
}

.search_console .search_ul li.particle .list_area label .flex .color_area .color_box{
	height: 1.875vw;
}

.search_console .search_ul li.particle .list_area label .flex .text_area{
	width: calc(100% - 1.875vw);
	padding-left: 0.625vw;
}

.search_console .search_ul li.particle .list_area label .flex .text_area .particle_name{
	font-size: 0.859375vw;
}

.search_console .search_ul li.particle .list_area label .flex .text_area .size{
	font-size: 0.78125vw;
}


/********** 用途 **********/
/********** 品番 **********/
/********** 許容回転数 **********/
/********** セット **********/

.search_console .search_ul li.item_set,
.search_console .search_ul li.item_rotation_speed,
.search_console .search_ul li.code_head,
.search_console .search_ul li.recommended_use{

}

.search_console .search_ul li.item_set .list_area  label,
.search_console .search_ul li.item_rotation_speed .list_area  label,
.search_console .search_ul li.code_head .list_area  label,
.search_console .search_ul li.recommended_use .list_area label{
	margin: 0 1.25vw 1.25vw 0;
}

.search_console .search_ul li.item_set .list_area  label .btn_wrapp,
.search_console .search_ul li.code_head .list_area  label .btn_wrapp,
.search_console .search_ul li.code_head .list_area  label .btn_wrapp,
.search_console .search_ul li.recommended_use .list_area label .btn_wrapp{
	min-width: 5.625vw;
	padding: 0.625vw 1.25vw;
	font-size: 0.9375vw;
}


/********** サブメニュー開閉 **********/

.search_console .sub_area{

}

.search_console .sub_area .toggle_btn_area{
	padding: 3.359375vw 0;
}

.search_console .sub_area .toggle_btn_area .toggle_btn{
	font-size: 1.09375vw;
	padding-left: 3.125vw;
}

.search_console .sub_area .toggle_btn_area .toggle_btn::before{
    width: 2.5vw;
    height: 2.5vw;
}


/********** 最大 **********/
/********** 作業長 **********/

.search_console .search_ul li .list_area  .select_wrapp{

}

.search_console .search_ul li .list_area  .select_wrapp .select_data .select_box{
	min-width: 7.8125vw;
	height: 3.75vw;
}

.search_console .search_ul li .list_area  .select_wrapp .select_data .select_box::after{
    width: 2.5vw;
    height: 2.5vw;
    right: 0.625vw;
}


.search_console .search_ul li .list_area  .select_wrapp .select_data select{
	height: 3.75vw;
	border-radius: 0.625vw;
	padding: 0.625vw 3.75vw 0.625vw 1.25vw;
	font-size: 0.9375vw;
}

.search_console .search_ul li .list_area  .select_wrapp .select_data small{
    font-size: 0.9375vw;
    margin-left: 0.625vw;
}

.search_console .search_ul li .list_area  .select_item{
    font-size: 0.9375vw;
    margin: 0 1.25vw;	
}


/********** 検索ボタン **********/

.search_console .search_btn{
	width: 25vw;
	height: 5vw;
	margin: 3.125vw auto 0;
}

.search_console .search_btn .submit_btn{
	height: 5vw;
	line-height: 5vw;
	border-radius: 5vw;
	font-size: 1.09375vw;
}

.search_console .search_btn .submit_btn::before{
	border-radius: 5vw;
}

.search_console .search_btn .submit_btn::after{
	width: 1.875vw;
	height: 1.875vw;
    right: 0.9375vw;
}


.search_console .reset_btn{
	width: 11.25vw;
	height: 2.890625vw;
	border-radius: 2.890625vw;
	margin: 1.875vw auto 0;
	box-shadow: -0.15625vw -0.15625vw 0.15625vw 0 rgba(153, 153, 153, 0.60) inset, 1px 0.15625vw 0.15625vw 0 rgba(153, 153, 153, 0.15), 1px 1px 0.234375vw 0 rgba(0, 0, 0, 0.10);
}

.search_console .reset_btn strong{
	font-size: 0.9375vw;
}



/********** モーダル **********/

.modal_container {

}

.modal_container .data_wrapp {
    padding: 1.5625vw;
    margin: 3.90625vw auto;
    border-radius: 0.625vw;
}

.modal_container .close {
    width: 3.4375vw;
    height: 3.4375vw;
    top: 0.78125vw;
    right: 0.78125vw;
}


.zoom_lens {
	border: 0.15625vw solid #0076A8;
	width: 15.625vw;
	height: 15.625vw;
	background-size: 800px 800px;
}

.zoom_lens::after{
	width: 1.875vw;
	height: 1.875vw;
	top: -0.9375vw;
	left: -0.9375vw;
}


/********** ページ共通 **********/

.base_bg{
	position: relative;
}

.base_bg::before{
    height: 128.984375vw;
    top: -5.625vw;
}

.page_head{
	width: 80vw;
	margin: 0 auto 5vw;
	padding-top: 5.15625vw;
}

.page_head .sub_title {
    font-size: 1.25vw;
    margin-bottom: 1.5625vw;
}

.page_head .sub_title::after {
    width: 3.125vw;
    bottom: -0.9375vw;
}

.page_head h1{
    font-size: 3.125vw;
}


.seart_menu_toggle{
	width: 80vw;
	margin: 0 auto -2.8125vw;
	box-shadow: 0.625vw 0.625vw 1.875vw 0 rgba(0, 0, 0, 0.10);
	border-radius: 1.5625vw;
}

.seart_menu_toggle .menu_toggle_btn{
	height: 6.25vw;
	line-height: 6.25vw;
	border-radius: 1.5625vw;
}

.seart_menu_toggle .menu_toggle_btn::after{
    width: 2.5vw;
    height: 2.5vw;
    right: 1.5625vw;
}

.seart_menu_toggle .menu_toggle_btn p{
	font-size: 1.25vw;
}

.seart_menu_toggle .menu_toggle_body .search_console{
	padding: 2.5vw 3.125vw 5vw;
}



/*------- 認証 -------*/

.certification_modal {

}

.certification_cont{
	width: 64.53125vw;
	border-radius: 1.5625vw;
	padding: 5vw;
}

.certification_cont .title{
	font-size: 1.5625vw;
	margin-bottom: 1.5625vw;
}

.certification_cont .caption{
	font-size: 1.25vw;
	margin-bottom: 3.125vw;
}

.certification_cont .btn_catch{
	font-size: 1.25vw;
	margin-bottom: 1.5625vw;
}

.certification_cont .btn_ul li{
	margin: 0 0.78125vw;
}

.certification_cont .btn_ul li a{
	width: 9.375vw;
	height: 3.75vw;
	border-radius: 3.75vw;
}

.certification_cont .btn_ul li a::before {
    border-radius: 3.75vw;
}

.certification_cont .btn_ul li a strong{
	font-size: 0.9375vw;
	padding-right: 2.8125vw;
}

.certification_cont .btn_ul li a strong::after {;
    width: 1.875vw;
    height: 1.875vw;
}



/********** 404 **********/

.notfound{
	padding: 6.25vw 0;
}

.notfound .notfond_wrapp{
	width: 90vw;
	padding: 5vw;
	border-radius: 1.5625vw;
}

.notfound .notfond_wrapp .catch_area{
	margin-bottom: 1.875vw;
}

.notfound .notfond_wrapp .catch_area .main{
	font-size: 6.25vw;
}

.notfound .notfond_wrapp .catch_area .sub{
	font-size: 1.5625vw;
}

.notfound .notfond_wrapp .caption{
	font-size: 1.09375vw;
	margin-bottom: 1.875vw;
}

.notfound .notfond_wrapp .link_btn{
	width: 11.171875vw;
}

.notfound .notfond_wrapp .link_btn a{
    height: 3.515625vw;
    border-radius: 3.515625vw;
	box-shadow: -0.15625vw -0.15625vw 0.15625vw 0 rgba(153, 153, 153, 0.60) inset, 1px 0.15625vw 0.15625vw 0 rgba(153, 153, 153, 0.15), 1px 1px 0.234375vw 0 rgba(0, 0, 0, 0.10);
}

.notfound .notfond_wrapp .link_btn a::before{
	border-radius: 3.515625vw;
	box-shadow: 1px 0.15625vw 0.15625vw 0 rgba(255, 255, 255, 0.50), 0.15625vw 0.15625vw 0.3125vw 0 rgba(0, 0, 0, 0.10) inset;
}

.notfound .notfond_wrapp .link_btn a strong{
	font-size: 0.9375vw;
}




}


/********************************************************************************
	スマートフォン用 CSS
********************************************************************************/

@media(max-width:430px){

body{
	font-size: 4.266667vw;
}

a:hover{
	opacity: 1;
}

.pc-on{display: none;}
.sp-on{display: block;}


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

header{
	width: auto;
	margin: 0 auto;
	padding: 0 4.266667vw;
	border-radius: 0 0 3.2vw 3.2vw;
	box-shadow: 2.133333vw 2.133333vw 6.4vw 0 rgba(0, 0, 0, 0.10);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

header .header_wrapper{
	display: block;
}

header .header_wrapper .logo{
	width: 36.266667vw;
	position: relative;
	z-index: 2;
}

header .header_wrapper .menu_area{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

header .header_wrapper .menu_area .sp_list_btn{
	width: 25.866667vw;
	position: fixed;
	top: 3.733333vw;
	right: 21.333333vw;
	z-index: 10;
}

header .header_wrapper .menu_area .sp_list_btn a{
	display: block;
	width: 25.866667vw;
	height: 10.666667vw;
	line-height: 9.333333vw;
	border-radius: 10.666667vw;
	background: linear-gradient(315deg, #D4E8F1 0%, #F9FDFF 100%);
	box-shadow: -0.533333vw -0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.60) inset, 1px 0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.15), 1px 1px 0.8vw 0 rgba(0, 0, 0, 0.10);
	color: var(--text);
	box-sizing: border-box;
}

header .header_wrapper .menu_area .sp_list_btn strong{
	font-size: 3.2vw;
	font-weight: 400;
	line-height: 1;
	padding-left: 11.733333vw;
	position: relative;
}

header .header_wrapper .menu_area .sp_list_btn strong::before{
	content: '';
	display: inline-block;
	width: 6.4vw;
	height: 6.4vw;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/icon_list.png');
	position: absolute;
    top: 50%;
    left: 4.266667vw;
    transform: translate(0, -50%);
}

header .header_wrapper .menu_area .sp_menu_btn{
	width: 14.933333vw;
	height: 14.933333vw;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/btn_menu_open.png');
	position: fixed;
	top: 1.866667vw;
	right: 4.266667vw;
	z-index: 10;
}

header .header_wrapper .menu_area .sp_menu_btn.active{
	background-image: url('../images/common/btn_menu_close.png');
}

header .header_wrapper .menu_area .menu_wrapp{
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
	padding: 26.133333vw 4.266667vw 4.266667vw;
	border-radius: 0 0 3.2vw 3.2vw;
	display: none;
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul{
	display: block;
	margin-bottom: 6.4vw;
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul li{
	margin-right: 0x;
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul li a{
	display: block;
	font-size: 3.733333vw;
	padding: 4.266667vw 0;
	border-bottom: 1px solid #eee;
	position: relative;
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul li:first-child a{
	border-top: 1px solid #eee;
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul li a::after{
	content: '';
	display: inline-block;
	width: 8.533333vw;
	height: 8.533333vw;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/icon_arrow03.png');
	position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

header .header_wrapper .menu_area .menu_wrapp .main_list_ul li.current a{
	color: #A2A2A2;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp{
	display: block;
	margin-bottom: 6.4vw;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li{
	margin: 0 0 3.2vw;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li:last-child{
	margin-bottom: 0;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li > a{
	display: block;
	width: 100%;
	height: 17.066667vw;
	line-height: 17.066667vw;
	border-radius: 17.066667vw;
	padding: 0;
	box-shadow: -0.533333vw -0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.60) inset, 1px 0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.15), 1px 1px o.8vw 0 rgba(0, 0, 0, 0.10);
	font-size: 3.733333vw;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp li.list a{
	background: linear-gradient(315deg, #D4E8F1 0%, #F9FDFF 100%);
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp > li > a:hover::before{
	opacity: 0;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp li a strong{
	padding-left: 7.466667vw;
}

header .header_wrapper .menu_area .menu_wrapp .btn_wrapp li a strong::before{
	width: 6.4vw;
	height: 6.4vw;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area{
	text-align: center;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area .btn_wrapp{
	display: inline-block;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul{
	justify-content: center;
    padding-left: 9.6vw;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul::before{
	width: 6.4vw;
	height: 6.4vw;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li{
	padding: 0 5.333333vw 0 0;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li:last-child{
	padding: 0 0 0 5.333333vw;
}

header .header_wrapper .menu_area .menu_wrapp .lang_area ul li .btn{
	font-size: 4.266667vw;
}

.menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* 半透明の黒背景 */
  z-index: 90; /* メニューより下に */
}



/*------- フッター -------*/

footer{
	margin-top: -3.2vw;
	padding: 17.066667vw 6.4vw 6.4vw;
	border-radius: 3.2vw 3.2vw 0 0;
}

footer .footer_wrapper{
	width: auto;
}

footer .footer_wrapper .f_contact_area{
	display: block;
	margin-bottom: 5.333333vw;
	padding-bottom: 10.666667vw;
}

footer .footer_wrapper .f_contact_area .text_area{
	width: auto;
	margin-bottom: 10.666667vw;
}

footer .footer_wrapper .f_contact_area .text_area .catch{
	font-size: 4.266667vw;
	margin-bottom: 8.533333vw;
}

footer .footer_wrapper .f_contact_area .text_area .catch::after{

	width: 10.666667vw;
    bottom: -3.2vw;
}

footer .footer_wrapper .f_contact_area .text_area .caption{
	font-size: 4.266667vw;
}


footer .footer_wrapper .f_contact_area .link_area{
	width: auto;
}

footer .footer_wrapper .f_contact_area .link_area ul{

}

footer .footer_wrapper .f_contact_area .link_area ul li{
	display: block;
	margin-bottom: 5.333333vw;
	border-radius: 3.2vw;
	padding: 6.133333vw 0;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box{
	width: auto;
	margin-bottom: 3.2vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box .main{
	margin-bottom: 1.866667vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box .main strong{
	font-size: 5.333333vw;
	padding-left: 11.733333vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box .main strong::before{
	width: 10.666667vw;
	height: 10.666667vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .left_box .sub{
	font-size: 4.266667vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box{
	width: auto;
	padding-left: 0;
	text-align: center;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box a{
	width: 51.466667vw;
	height: 12.8vw;
	line-height: 11.2vw;
	border-radius: 12.8vw;
	box-shadow: -0.533333vw -0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.60) inset, 1px 0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.15), 1px 1px 0.8vw 0 rgba(0, 0, 0, 0.10);
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box a strong{
	font-size: 3.2vw;
    padding-right: 9.6vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box a strong::after{
	width: 6.4vw;
	height: 6.4vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box .phone .num{
	font-size: 8.533333vw;
}

footer .footer_wrapper .f_contact_area .link_area ul li .right_box .phone .note{
	font-size: 3.2vw;
	margin: -3.2vw 0 0;
}

footer .footer_wrapper .footer_bottom{
	display: block;
}

footer .footer_wrapper .footer_bottom .left_box{
	width: auto;
	margin-bottom: 17.066667vw;
}

footer .footer_wrapper .footer_bottom .left_box p{
	font-size: 3.2vw;
}

footer .footer_wrapper .footer_bottom .right_box{
	width: auto;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex{
	display: block;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .logo{
	width: 60.266667vw;
	margin-bottom: 5.333333vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data{
	width: auto;
	padding-top: 0;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_item{
	font-size: 3.2vw;
	margin-bottom: 1.066667vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_name{
	font-size: 4.266667vw;
	margin-bottom: 1.066667vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .add{
	font-size: 3.733333vw;
	margin-bottom: 6.4vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_link{
	margin-bottom: 6.4vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_link a{
	width: 33.866667vw;
	height: 12.8vw;
	line-height: 11.733333vw;
	border-radius: 12.8vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_link a::after{
	width: 6.4vw;
	height: 6.4vw;
    right: 5.333333vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .c_link a strong{
	font-size: 3.2vw;
	margin-left: 5.333333vw;
}

footer .footer_wrapper .footer_bottom .right_box .info_flex .info_data .copyright{
	font-size: 3.2vw;
}



footer.contact_footer{
	margin-top: 14.4vw;
	padding: 0 0 6.4vw;
}

footer.contact_footer .logo{
	width: 60.266667vw;
	margin: 0 auto 6.4vw;
}

footer.contact_footer .copyright{
	font-size: 3.2vw;
}


/*------- コンテンツ -------*/

main{
	padding: 19.2vw 0 3.2vw; 
}


.search_console{
	width: auto;
	margin: 0 2.133333vw;
	padding: 8.533333vw 4.266667vw;
	border-radius: 3.2vw;
	box-shadow: 2.133333vw 2.133333vw 6.4vw 0 rgba(0, 0, 0, 0.10);
}

.search_console .sub_title{
	font-size: 7.466667vw;
	margin-bottom: 13.866667vw;
}

.search_console .sub_title::after {
    width: 10.666667vw;
    bottom: -3.2vw;
}

.search_console .search_caption{
	font-size: 3.733333vw;
	margin-bottom: 5.333333vw;
}

.search_console .main_title{
    font-size: 7.466667vw;
    margin-bottom: 10.666667vw;
}

.search_console .search_ul{

}

.search_console .search_ul li{
	display: block;
	padding: 4.266667vw 0;
}

.search_console .search_ul li:last-child{
}

.search_console .search_ul li .item{
	width: auto;
	font-size: 3.733333vw;
	line-height: 1.75;
	position: relative;
}

.search_console .search_ul li .item::after{
	content: '';
	display: inline-block;
	width: 8.533333vw;
	height: 8.533333vw;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/icon_plus.png');
	position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

.search_console .search_ul li .item.active::after{
	background-image: url('../images/common/icon_minus.png');
}

.search_console .sub_area .search_ul li .item{
	width: auto;
	padding-top: 0;
}

.search_console .sub_area .search_ul li .list_area{
	width: auto;
}




.search_console .search_ul li .list_area{
	width: auto;
	justify-content: space-between;
	padding-top: 4.266667vw;
	display: none;
}

.search_console .search_ul li.shape .list_area .btn_wrapp{
	justify-content: space-between;
}




.search_console .sub_area .search_ul li .list_area{
	display: block;
}

.search_console .sub_area .search_ul li .item::after{
	content: none;
}


/********** 形状 **********/

.search_console .search_ul li.shape .list_area label{
	width: 42.666667vw;
	margin: 0 0 1.6vw;
}

.search_console .search_ul li.shape .list_area label .btn_wrapp{
	height: 18.133333vw;
	border-radius: 18.133333vw;
	padding: 2.133333vw 4.266667vw;
}

.search_console .search_ul li.shape .list_area label .flex .img_area{
	width: 8.533333vw;
	height: 8.533333vw;
}

.search_console .search_ul li.shape .list_area label .flex .text_area{
	width: calc(100% - 8.533333vw);
	padding-left: 1.066667vw;
}

.search_console .search_ul li.shape .list_area label .flex .text_area .shape_iso{
	font-size: 2.666667vw;
}

.search_console .search_ul li.shape .list_area label .flex .text_area .shape_name{
	font-size: 2.4vw;
}

.search_console .search_ul li.shape .list_area label.select_all .flex .text_area .shape_name,
.search_console .search_ul li.shape .list_area label.other .flex .text_area .shape_name{
	font-size: 3.733333vw;
	padding-left: 4.266667vw;
}


/********** 粒径 **********/

.search_console .search_ul li.particle{
	padding-bottom: 4.266667vw;
}

.search_console .search_ul li.particle .list_area label{
	display: block;
	width: 100%;
	margin: 0 0 4.266667vw;
}

.search_console .search_ul li.particle .list_area label:last-of-type{
	margin-bottom: 0;
}

.search_console .search_ul li.particle .list_area label .btn_wrapp{
	height: 14.666667vw;
	border-radius: 14.666667vw;
	padding: 2.133333vw 4.266667vw;
}

.search_console .search_ul li.particle .list_area label .flex .color_area{
	width: 6.4vw;
}

.search_console .search_ul li.particle .list_area label .flex .color_area .color_box{
	height: 6.4vw;
}

.search_console .search_ul li.particle .list_area label .flex .text_area{
	width: calc(100% - 6.4vw);
	padding-left: 2.133333vw;
}

.search_console .search_ul li.particle .list_area label .flex .text_area .particle_name{
	font-size: 3.2vw;
}

.search_console .search_ul li.particle .list_area label .flex .text_area .size{
	font-size: 2.666667vw;
}


/********** 用途 **********/
/********** 品番 **********/
/********** 許容回転数 **********/
/********** セット **********/

.search_console .search_ul li.item_set,
.search_console .search_ul li.item_rotation_speed,
.search_console .search_ul li.code_head,
.search_console .search_ul li.recommended_use{
	padding-bottom: 4.266667vw;
}

.search_console .search_ul li.item_set .list_area  label,
.search_console .search_ul li.item_rotation_speed .list_area  label,
.search_console .search_ul li.code_head .list_area  label,
.search_console .search_ul li.recommended_use .list_area label{
	margin: 0 2.933333vw 3.2vw 0;
}

.search_console .search_ul li.item_set .list_area  label .btn_wrapp,
.search_console .search_ul li.item_rotation_speed .list_area  label .btn_wrapp,
.search_console .search_ul li.code_head .list_area  label .btn_wrapp,
.search_console .search_ul li.recommended_use .list_area label .btn_wrapp{
	min-width: 18.666667vw;
	padding: 2.133333vw 4.266667vw;
	font-size: 3.2vw;
}


/********** サブメニュー開閉 **********/

.search_console .sub_area{

}

.search_console .sub_area .toggle_btn_area{
	padding: 0 0;
	margin: 6.4vw 0 10.666667vw;
}

.search_console .sub_area .toggle_btn_area .toggle_btn{
	font-size: 3.733333vw;
	padding-left: 10.666667vw;
}

.search_console .sub_area .toggle_btn_area .toggle_btn::before{
    width: 8.533333vw;
    height: 8.533333vw;
}


/********** 最大 **********/
/********** 作業長 **********/

.search_console .search_ul li .list_area  .select_wrapp{

}

.search_console .search_ul li .list_area  .select_wrapp .select_data .select_box{
	min-width: 26.666667vw;
	height: 12.8vw;
}

.search_console .search_ul li .list_area  .select_wrapp .select_data .select_box::after{
    width: 8.533333vw;
    height: 8.533333vw;
    right: 2.133333vw;
}


.search_console .search_ul li .list_area  .select_wrapp .select_data select{
	height: 12.8vw;
	border-radius: 2.133333vw;
	padding: 2.133333vw 12.8vw 2.133333vw 4.266667vw;
	font-size: 3.2vw;
}

.search_console .search_ul li .list_area  .select_wrapp .select_data small{
    font-size: 3.2vw;
    margin-left: 2.133333vw;
}

.search_console .search_ul li .list_area  .select_item{
    font-size: 3.2vw;
    margin: 0 4.266667vw;	
}


/********** 検索ボタン **********/

.search_console .search_btn{
	width: 53.333333vw;
	height: 12.8vw;
	margin: 10.666667vw auto 0;
}

.search_console .search_btn .submit_btn{
	height: 12.8vw;
	line-height: 12.8vw;
	border-radius: 12.8vw;
	box-shadow: -0.533333vw -0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.60) inset, 1px 0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.15), 1px 1px 0.8vw 0 rgba(0, 0, 0, 0.10);
	font-size: 3.733333vw;
}

.search_console .search_btn:hover .submit_btn::before{
	opacity: 0;
}

.search_console .search_btn .submit_btn::after{
	width: 6.4vw;
	height: 6.4vw;
    right: 3.2vw;
}


.search_console .reset_btn{
	width: 53.333333vw;
	height: 12.8vw;
	border-radius: 12.8vw;
	margin: 6.4vw auto 0;
	box-shadow: -0.533333vw -0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.60) inset, 1px 0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.15), 1px 1px 0.8vw 0 rgba(0, 0, 0, 0.10);
}

.search_console .reset_btn strong{
	font-size: 3.733333vw;
}




/********** モーダル **********/

.modal_container {
	display: none;
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.4);
	z-index: 1000;
}

.cont_scroll {
	height: 80%;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	border-radius: 3.2vw;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.modal_container .close {
    width: 11.733333vw;
    height: 11.733333vw;
    top: 4.266667vw;
    right: 4.266667vw;
}


.zoom_lens {
  border: 0.533333vw solid #0076A8;
  width: 21.333333vw;
  height: 21.333333vw;
  background-size: 400px 400px;
	display: none;
}

.zoom_lens::after{
	width: 6.4vw;
	height: 6.4vw;
	top: -3.2vw;
	left: -3.2vw;
}



/********** ページ共通 **********/

.base_bg{
	position: relative;
}

.base_bg::before{
    height: 170.666667vw;
    background: linear-gradient(53deg, #F3F3F4 54.77%, #B1E5FB 74.05%, #96E7D4 89.23%, #FEDB00 99.79%);
    top: -19.2vw;
}

.page_head{
	width: auto;
	margin: 0 6.4vw 5.6vw;
	padding-top: 10.666667vw;
}

.page_head .sub_title {
    font-size: 4.266667vw;
    margin-bottom: 5.333333vw;
}

.page_head .sub_title::after {
    width: 10.666667vw;
    bottom: -3.2vw;
}

.page_head h1{
    font-size: 7.466667vw;
}


.seart_menu_toggle{
	width: auto;
	margin: 0 6.4vw -14.4px;
	box-shadow: 2.133333vw 2.133333vw 6.4vw 0 rgba(0, 0, 0, 0.10);
	border-radius: 3.2vw;
}

.seart_menu_toggle .menu_toggle_btn{
	height: 21.333333vw;
	line-height: 21.333333vw;
	box-shadow: -0.533333vw -0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.60) inset, 1px 0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.15), 1px 1px 0.8vw 0 rgba(0, 0, 0, 0.10);
	border-radius: 3.2vw;
}

.seart_menu_toggle .menu_toggle_btn::after{
    width: 8.533333vw;
    height: 8.533333vw;
    right: 5.333333vw;
}

.seart_menu_toggle .menu_toggle_btn p{
	font-size: 4.266667vw;
}

.seart_menu_toggle .menu_toggle_body .search_console{
	padding: 8.533333vw 4.266667vw;
	margin: 0;
}



/*------- 認証 -------*/

.certification_modal {

}

.certification_cont{
	width: 95.733333vw;
	border-radius: 3.2vw;
	padding: 8.533333vw 4.266667vw;
}

.certification_cont .title{
	font-size: 5.333333vw;
	margin-bottom: 5.333333vw;
}

.certification_cont .caption{
	font-size: 4.266667vw;
	margin-bottom: 10.666667vw;
}

.certification_cont .btn_catch{
	font-size: 4.266667vw;
	margin-bottom: 5.333333vw;
}

.certification_cont .btn_ul{

}

.certification_cont .btn_ul li{
	margin: 0 2.666667vw;
}

.certification_cont .btn_ul li a{
	width: 32vw;
	height: 12.8vw;
	border-radius: 12.8vw;
	box-shadow: -0.533333vw -0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.60) inset, 1px 0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.15), 1px 1px 0.8vw 0 rgba(0, 0, 0, 0.10);
}

.certification_cont .btn_ul li a:hover::before {
    opacity: 0;
}

.certification_cont .btn_ul li a strong{
	font-size: 3.2vw;
	padding-right: 9.6vw;
}

.certification_cont .btn_ul li a strong::after {;
    width: 6.4vw;
    height: 6.4vw;
}



/********** 404 **********/

.notfound{
	padding: 21.333333vw 0;
}

.notfound .notfond_wrapp{
	width: 95.733333vw;
	padding: 8.533333vw 4.266667vw;
	border-radius: 3.2vw;
}

.notfound .notfond_wrapp .catch_area{
	margin-bottom: 6.4vw;
}

.notfound .notfond_wrapp .catch_area .main{
	font-size: 21.333333vw;
}

.notfound .notfond_wrapp .catch_area .sub{
	font-size: 5.333333vw;
}

.notfound .notfond_wrapp .caption{
	font-size: 3.733333vw;
	margin-bottom: 6.4vw;
}

.notfound .notfond_wrapp .link_btn{
	width: 38.133333vw;
}

.notfound .notfond_wrapp .link_btn a{
    height: 12vw;
    border-radius: 12vw;
	box-shadow: -0.533333vw -0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.60) inset, 1px 0.533333vw 0.533333vw 0 rgba(153, 153, 153, 0.15), 1px 1px 0.8vw 0 rgba(0, 0, 0, 0.10);
}

.notfound .notfond_wrapp .link_btn a::before{
	border-radius: 12vw;
	box-shadow: 1px 0.533333vw 0.533333vw 0 rgba(255, 255, 255, 0.50), 0.533333vw 0.533333vw 1.066667vw 0 rgba(0, 0, 0, 0.10) inset;
}

.notfound .notfond_wrapp .link_btn a:hover::before{
	opacity: 0;
}

.notfound .notfond_wrapp .link_btn a strong{
	font-size: 3.2vw;
}








}

