@charset "UTF-8";
/*
webfontで使う場合のインポート
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+SC:wght@400;700&family=Noto+Sans:ital,wght@0,700;1,400&display=swap');
*/


@font-face {
	font-family: 'Noto Sans';
	src: url('fonts/NotoSans-Regular.ttf') format("truetype");
	font-weight: 400;
}
@font-face {
	font-family: 'Noto Sans AC';
	src: url('fonts/NotoSansAC-Regular.otf') format("truetype");
	font-weight: 400;
}
@font-face {
	font-family: 'Noto Sans Bold';
	src: url('fonts/NotoSans-Bold.ttf') format("truetype");
	font-weight: 700;
}
@font-face {
	font-family: 'Noto Sans AC Bold';
	src: url('fonts/NotoSansAC-Bold.otf') format("truetype");
	font-weight: 700;
}

/******************** 共通 ********************/

/* ==== BASE */
:root{
	--maincolor: #0074be;
}

* {
	margin:0px;
	padding:0px;
	box-sizing: border-box;
}
html,body {
	width:100%;
	height:100%;
}
div,h1,h2,h3,h4,h5,h6,pre,p,li,th,td,dt,dd,address{
	font-size:100%;
	/*font-family: 'Noto Sans', 'Noto Sans SC', 'Noto Sans AC', sans-serif;*/
	font-weight: 400;
}

body {
	color:#333333;
	background-color:#ffffff;
}

img:not(.notResize) {
	width: auto;
	max-width: 100%;
	border:none;
}
img.cover {
	width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}
a:hover img {
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

textarea,select,input {
	outline: none;
	font-family: 'Noto Sans', 'Noto Sans AC', sans-serif;
	cursor: pointer;
}
input + label {
	display: inline-block;
	padding-left: 0.5em;
}
input.alphaimg:hover {
	filter:Alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

/* ==== 汎用(ユーティリティ) */
.hide {
	display:none;
}
.trash {
	cursor:pointer;
}
.pointer {
	cursor:pointer;
}
.w480{
	width:480px;
}
.w520{
	width:520px;
}
.w1040 {
	width: 100%;
	min-width: 960px;
}
.w60Persent{
	width:60%;
}
.print {
	display:none;
}
.opacity50 {
	opacity:0.55;
}
.opacity50:hover {
	opacity:1.0;
}
.deactive {
	display: none!important;
}
.bgBlue{
	background: rgba(0, 116, 190,.1);
}
.disabled,
.desabled{
	/*opacity: 0.5;*/
	opacity: 0.3;
	pointer-events: none;
}
.disabled .disabled_trriger,
.desabled .desabled_trriger{
	opacity: 1;
	pointer-events: auto;
}
.u-external{
	padding-right: 2em;
	position: relative;
}
.u-external:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1em;
	height: 1em;
	background: url(../img/icon_external.svg) no-repeat center / contain;
}
.nowrap {
	white-space: nowrap;
}
.ws-nowrap {
	white-space: normal !important;
}
/* ==== clearfix */
.clearfix {
  min-height: 1px;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
* html .clearfix {
  height: 1px;
}

tr.tdline:hover{
	cursor:pointer;
	background-color:#ffd !important;
}

/* ==== container */

/* 縮小時余白なし */
.widthWrapper {
	position: relative;
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
}
/* 縮小時余白あり */
.innerWrapper {
	position: relative;
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
}
/* PCのみで表示 */
.wrapperPC {
	display: block;
}
/* スマホのみで表示 */
.wrapperSP {
	display: none;
}
@media screen and (max-width: 1840px) {
	.innerWrapper{
		padding-left: 2%;
		padding-right: 2%;
	}
}
@media screen and (max-width: 800px) {
	.innerWrapper{
		padding-left: 4%;
		padding-right: 4%;
	}
	.wrapperPC {
		display: none;
	}
	.wrapperSP {
		display: block;
	}
}

/* ==== flexbox　*/
:root {
  --c-flex-gap: 2%;
}
.c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-flex.gap > * {
  margin-left: var(--c-flex-gap);
}
.c-flex.gapLarge > * {
  margin-left: calc(var(--c-flex-gap) * 2);
}
.c-flex:not(.c-flex-reverse) > *:first-child {
  margin-left: 0;
}
.c-flex--2 > * {
  width: calc(100% / 2);
}
.c-flex--2.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(2 - 1))) / 2);
}
.c-flex--2.gap > *:nth-child(2n+1) {
  margin-left: 0;
}
.c-flex--3 > * {
  width: calc(100% / 3);
}
.c-flex--3.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(3 - 1))) / 3);
}
.c-flex--3.gap > *:nth-child(3n+1) {
  margin-left: 0;
}
.c-flex--4 > * {
  width: calc(100% / 4);
}
.c-flex--4.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(4 - 1))) / 4);
}
.c-flex--4.gap > *:nth-child(4n+1) {
  margin-left: 0;
}
.c-flex--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-flex--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-flex--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-flex--alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-flex--alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-flex--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-flex--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/******************** FORM ********************/

input.text {
	/*
	font-family: 'メイリオ', 'Meiryo', 'SimSun', 'SimHei', 'Verdana', 'Geneva', 'ＭＳ Ｐゴシック', sans-serif;
	*/
	/*
	font-family: 'Noto Sans', 'Noto Sans JP', 'Noto Sans SC', sans-serif;
	*/
	font-family: 'Noto Sans', 'Noto Sans AC', sans-serif;
	font-weight: 400;
	border:1px solid #80b9df;
	padding:5px;
}
input.w80 {
	width:80px;
}
input.w160 {
	width:160px;
}
input.w12em {
	width: 12em;
}
select {
	width: 100%;
	font-family: 'Noto Sans', 'Noto Sans AC', sans-serif;
	font-weight: 400;
	border:1px solid #cccccc;
	padding:3px;
	box-sizing: border-box;
}
a.button_on{
	display:inline-block;
	font-size:12px;
	/*
	font-weight: bold;
	*/
	font-family: 'Noto Sans Bold', 'Noto Sans AC Bold', sans-serif;
	font-weight: 700;
	background-color: #0074be;
	border: none;
	border-radius: 4px;
	padding: 4px 16px;
	color:#fff;
	text-decoration:none;
	margin:2px;
}
.button_box{
	display: block;
	width: 100%;
	max-width: 360px;
	height: 60px;
}
.button_box > *{
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	appearance: none;
	color: #fff;
	background: var(--maincolor);
	border: none;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.button_box:hover > *{
	background: #1589d2;
}
.button_box.center{
	margin-left: auto;
	margin-right: auto;
}
.button_box.arrow{
	position: relative;
}
.button_box.arrow:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0.7em;
	bottom: 0;
	margin: auto;
	width: 0.7em;
	height: 0.7em;
	border-top: 0.2em solid #fff;
	border-right: 0.2em solid #fff;
	transform: rotate(45deg);
	pointer-events: none;
	transition: 0.2s;
}
.button_box.arrow-down:after{
	top: -0.3em;
	transform: rotate(135deg);
}
.open .button_box.arrow-down:after{
	top: 0.3em;
	transform: rotate(-45deg);
}
.counter{
	width: 1em;
	height: 1em;
	margin: 0.2em;
	position: relative;
	display: inline-block;
	vertical-align: text-top;
}
.counter button{
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	border: 0.4em solid transparent;
	background: none;
	cursor: pointer;
}
.counter button.up,
.counter button.upFloat{
	top: -0.25em;
	border-top-width: 0;
	border-bottom: 0.6em solid #000;
}
.counter button.down,
.counter button.downFloat{
	bottom: -0.25em;
	border-top: 0.6em solid #000;
	border-bottom-width: 0;
}
.c-radio input{
	appearance: none;
}
.c-radio input + span{
	padding-left: 2em;
	position: relative;
	cursor: pointer;
}
.c-radio input + span:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	width: 1em;
	height: 1em;
	background: #fff;
	border: 0.25em solid var(--maincolor);
	border-radius: 50%;
}
.c-radio input:checked + span:before{
	background: var(--maincolor);
}
.c-radio.horizontal{
	display: flex;
	flex-wrap: wrap;
}
.c-radio.horizontal > *:not(:last-child){
	margin-right: 2em;
}
.c-checkbox{
	cursor: pointer;
	line-height: 1;
	display: inline-block;
}
.c-checkbox input{
	appearance: none;
	display: inline-block;
	font-size: inherit;
	font-size: 26px;
	width: 1em;
	aspect-ratio: 1 / 1;
	border: 0.12em solid var(--maincolor);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 57.7%;
}
.c-checkbox > input:checked{
	background-image: url(../img/icon_check.svg);
}
.c-checkbox.white > input{
	border-color: #fff;
}
.c-checkbox.white > input:checked{
	background-image: url(../img/icon_check_wh.svg);
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
	.c-checkbox input{
		font-size: 2vw;
	}
	.button_box > *{
		font-size: 2.5vw;
	}
}
@media screen and (max-width: 800px) {
	.button_box{
		height: 10vw;
	}
	.button_box > *{
		font-size: min(4.5vw,30px);
	}
}

/******************** COLOR ********************/

.red  { color:#ff0000; }
.blue { color:#0154a2; }
.gold { color:#948600; }
.gold2{ color:#766b00; }
.glay { color:#999999; }
.white{ color:#ffffff; }
.orange{ color:#ff6600; }
.green{ color:green; }
.black{ color:#000000; }
.skyblue { color:#2ca6e0; }

.txtGray { color: #999; }
.txtLightGray { color: #ccc; }

/* 下付き文字 */
.txtSub {
	vertical-align: sub;
}
.txtUnderline {
	text-decoration: underline;
}

/******************** FONT ********************/
.sup {
	vertical-align: super;
}
.sub {
	vertical-align: sub;
}
.b,.fontBold {
	font-family: 'Noto Sans Bold', 'Noto Sans AC Bold', sans-serif;
	font-weight: 700;
}
.left{
	text-align:left !important;
}
.center{
	text-align:center !important;
}
.right {
	text-align:right !important;
}
.indent06 {
	text-indent: 6em;
}
.lineHeight100 {
	line-height: 100%;
}
.lineHeight120 {
	line-height: 120%;
}
.lineHeight140 {
	line-height: 140%;
}
.lineHeight150 {
	line-height: 150%;
}
.lineHeight180 {
	line-height: 180%;
}
@media screen and (max-width: 800px) {
	.lineHeight140 {
		line-height: 160%;
	}
	.lineHeight150 {
		line-height: 200%;
	}
	.lineHeight180 {
		line-height: 240%;
	}
}
.text10 {
	font-size: 10px;
}
.text12 {
	font-size: 12px;
}
.text14 {
	font-size: 14px;
}
.text15 {
	font-size: 15px;
}
.text16 {
	font-size: 16px;
}
.text18 {
	font-size: 18px;
}
.text20 {
	font-size: 20px;
}
.text24 {
	font-size: 24px;
}
.text26 {
	font-size: 26px;
}
.text30 {
	font-size: 30px;
}
.text32 {
	font-size: 32px;
}
.text60 {
	font-size: 32px;
}
@media screen and (min-width: 801px) and (max-width: 1200px) {
	.text10 {
		font-size: 0.83vw;
	}
	.text12 {
		font-size: 1vw;
	}
	.text14 {
		font-size: 1.16vw;
	}
	.text15 {
		font-size: 1.25vw;
	}
	.text16 {
		font-size: 1.33vw;
	}
	.text18 {
		font-size: 1.5vw;
	}
	.text20 {
		font-size: 1.66vw;
	}
	.text24 {
		font-size: 2vw;
	}
	.text26 {
		font-size: 2.16vw;
	}
	.text30 {
		font-size: 2.5vw;
	}
	.text32 {
		font-size: 2.66vw;
	}
	.text60 {
		font-size: 5vw;
	}
}
@media screen and (max-width: 800px) {
	.text10 {
		font-size: 2.4vw;
	}
	.text12 {
		font-size: 2.6vw;
	}
	.text14 {
		font-size: 2.8vw;
	}
	.text14 {
		font-size: 2.9vw;
	}
	.text16 {
		font-size: 3vw;
	}
	.text18 {
		font-size: 3.2vw;
	}
	.text20 {
		font-size: 3.4vw;
	}
	.text24 {
		font-size: 3.5vw;
	}
	.text26 {
		font-size: 3.6vw;
	}
	.text30 {
		font-size: 3.8vw;
	}
	.text32 {
		font-size: 4vw;
	}
	.text60 {
		font-size: 7.5vw;
	}
	/*スマホ個別調整*/
	h3.text12 {
		font-size: 3.6vw;
	}
}
.marginTop10 {
	margin-top: 1em;
}
.marginTop20 {
	margin-top: 2em;
}
.marginTop25 {
	margin-top: 2.5em;
}
.marginTop34 {
	margin-top: 3.4em !important;
}
.marginBottom20 {
	margin-bottom: 2em;
}

/* その他 */
p.step{
	color:#b5b5b5;
	margin-top:10px;
}

/******************** 共通ページコンテンツ ********************/

/* ==== レイアウト */
#container{
	width:100%;
	height:100%;
}
.contents > .contents {
	margin-top: 1.6em;
}

/* ==== header */
#header {
	padding: 2em 0;
}
#header .headerInner{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
/*
#header h1 {
	font-size: 30px;
	font-weight: bold;
	padding-left: 6em;
	width: 35%;
	height: 1.8em;
	color:#b5b5b5;
	background:url(../img/logo_web.png) no-repeat left center / auto 1.8em;
	display: flex;
	align-items: center;
}
*/
#header h1 {
	font-size: 30px;
	font-weight: bold;
	padding-left: 6em;
	width: 35%;
	height: 1.8em;
	color:#b5b5b5;
	background:url(../img/logo_web.png) no-repeat left center / auto 1.8em;
	display: flex;
	align-items: center;
	position: relative;
}
#header h1 a {
	position: absolute;
	top: 0;
	left: 0;
	width: 6em;
	height: 100%;
	display: block;
}
#header_box {
	width: 65%;
}
#header_box .headerSelect {
	position: relative;
	width: 100%;
	max-width: 690px;
	margin: 0 0 0 auto;
	display: flex;
	flex-wrap: wrap;
}
#header_box .headerSelect > li{
	display: flex;
	align-items: center;
}
#header_box .headerSelect label{
	font-size: 18px;
	width: 6em;
	display: block;
}
#header_box .headerSelect select,
#header_box .headerSelect .selected{
	/*font-size: 15px;*/
	width: calc(100% - 6em);
}
@media screen and (min-width: 801px) {
	#header_box .headerSelect > li{
		width: 48%;
	}
	#header_box .headerSelect > li:nth-child(2n){
		margin-left: 4%;
	}
	#header_box .headerSelect > li:nth-child(n+3){
		margin-top: 10px;
	}
}
@media screen and (max-width: 1800px) {
	#header {
		padding: 2vw 0;
	}
	#header h1 {
		font-size: 1.66vw;
	}
	#header_box .headerSelect label{
		font-size: 1vw;
	}
	#header_box .headerSelect select,
	#header_box .headerSelect .selected{
		font-size: 0.833vw;
	}
}
@media screen and (max-width: 800px) {
	#header h1 {
		font-size: 3.4vw;
		width: 100%;
	}
	#header_box {
		width: 100%;
		margin-top: 1em;
	}
	#header_box .headerSelect > li{
		width: 100%;
		margin-top: 10px;
	}
	#header_box .headerSelect label{
		font-size: 3.4vw;
	}
	#header_box .headerSelect select,
	#header_box .headerSelect .selected{
		font-size: 3vw;
	}
}

/* ==== footer */
#footer {
	padding: 2em 0 4em;
	border-top: 1px solid var(--maincolor);
}
#footer address{
	/*display:none;*/
	margin-top:5px;
}

/* ==== パンくずリスト */
.c-bread{
	font-size: 20px;
	padding: 1em 0;
	color: #7e7e7e;
}
.c-bread ul{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.c-bread li{
	line-height: 1.3;
}
.c-bread li:not(:last-child){
	padding-right: 2em;
	margin-right: 1em;
	position: relative;
}
.c-bread li:not(:last-child):after{
	content: '＞';
	position: absolute;
	top: 0;
	right: 0;
}
@media screen and (min-width: 801px) and (max-width: 1200px) {
	.c-bread{
		font-size: 1.6vw;
	}
}
@media screen and (max-width: 800px) {
	.c-bread{
		font-size: 3vw;
	}
}

/******************** 汎用パーツデザイン ********************/

/* ==== 見出し */
h2 {
	font-size: 36px;
	font-weight: bold;
	font-family: 'Noto Sans', 'Noto Sans AC', sans-serif;
	line-height: 1.3;
	color: var(--maincolor);
}
h3 {
	font-size: 30px;
	font-weight: bold;
	background-color:#0074be;
	color:#ffffff;
	padding: 0.5em 0.8em;
}
h4 {
	font-size: 24px;
	font-weight: bold;
	color: var(--maincolor);
}
h2 .sub,h3 .sub,h4 .sub{
	font-size: 60%;
	font-weight: normal;
	margin-left: 1em;
	line-height: 1.5;
}
h3 .sideTitle {
	font-size: 23px;
}
/* 見出し横に設置 */
.attach{
	position: relative;
}
.attach > .attach_item{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	height: fit-content;
}
@media screen and (max-width: 1800px) {
	h2 {
		font-size: 2vw;
	}
	h3 {
		font-size: 1.8vw;
	}
	h3 .sideTitle {
		font-size: 1.4vw;
	}
	h4 {
		font-size: 1.6vw;
	}
}
@media screen and (max-width: 800px) {
	h2{
		font-size: 4vw;
	}
	h3 {
		font-size: 3.8vw;
	}
	h3 .sideTitle {
		font-size: 3.8vw;
	}
	h4 {
		font-size: 3.5vw;
	}
	h2 .sub,h3 .sub,h4 .sub{
		font-size: 80%;
		margin-left: 0;
		display: block;
	}
}

/* ==== modal window */
#layer {
	opacity: 0.4;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	top: 0;
	left: 0;
	z-Index: 9999;
	display: none;
}
#lean_overlay{
	position: fixed; z-index:100;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background: #000;
	display: none;
}
.c-modal{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: fit-content;
	max-width: 90vw;
	height: fit-content;
	max-height: 90vh;
	overflow: auto;
	background: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
	display: none;
}
.c-modalWindlowSmall {
	width: 480px;
}
.c-modalWindlow {
	width: 800px;
}
.c-modalWindlowLarge {
	width: 1040px;
}
.c-modalTitle {
	font-weight: bold;
	background-color: #0074be;
	color: #ffffff;
	padding: 0.5em 0.8em;
	clear: both;
}
.c-modalClose {
	margin-right: 0.5em;
	float: right;
	cursor: pointer;
}
.c-modalBody {
	padding: 0.5em;
}
.p-presetModal{
	width: 600px;
	padding: 2em;
}
.p-presetModal figure{
	border: 4px solid #000;
	border-radius: 20px;
	overflow: hidden;
	margin-top: 4%;
	padding: 2%;
}
@media screen and (max-width: 800px) {
	.c-modalWindlow {
		width: 99%;
	}
	.c-modalWindlowLarge {
		width: 99%;
	}
	.p-presetModal{
		padding: 4%;
	}
	.p-presetModal figure{
		border-radius: 2.5vw;
	}
}
/* ==== リスト */
.c-ul{
	list-style: none;
}
.c-ul > li{
	padding-left: 1em;
	position: relative;
}
.c-ul > li:before{
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}
.decimal{
	margin: 1em 0 0 2em;
	list-style-type:decimal;
}
.disc{
	margin: 1em 0 0 2em;
	list-style-type:disc;
}

.c-dl dt{
	font-weight: bold;
	background: rgba(0, 116, 190,.1);
	padding: 0.25em 1.75em;
}
.c-dl dd{
	padding: 1.2em 2%;
}
.c-dl_multiple{
	display: flex;
	align-items: center;
}

/* ==== アイコン */
i.icon{
	width: 1.2em;
	height: 1.2em;
	margin: 0 0.25em;
	display: inline-block;
	vertical-align: text-top;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
i.icon-information{
	background-image: url(../img/icon_information.png);
}
i.icon-question{
	background-image: url(../img/icon_help.png);
}
i.icon-book{
	background-image: url(../img/icon_book.png);
}
i.icon-cad{
	background-image: url(../img/icon_cad.png);
}
i.icon-home{
	background-image: url(../img/icon_home.svg);
}
i.icon-caution{
	background-image: url(../img/icon_caution.png);
}

/* ==== ボタン */
.btn {
	display: block;
	padding: 0 0.5em;
	color: #fff;
	font-family: 'Noto Sans Bold', 'Noto Sans AC Bold', sans-serif;
	font-weight: 700;
	line-height: 200%;
	text-decoration: none;
	background-color: #2ca6e0;
	border-radius: 4px;
}
.btn:hover {
	color: #fff;
	opacity: 0.7;
}

/* ==== 画像選択 */
.c-imgSelect{
	display: flex;
	gap: 0.5em 2%;
}
.c-imgSelect li{
	text-align: center;
}
.c-imgSelect img{
	font-size: inherit;
	/*max-width: min(8.75em,100%);*/
	max-width: min(7.25em,100%);	/* 1171 .c-imgSelect.nowrap li の変更に伴う */
	border-radius: 6px;
	box-shadow: 0 0 0 1px #777777;
	margin: 4px 0px 0px 4px;	/* 1157 .c-imgSelect input:checked ~ img の変更に伴う */
}
.c-imgSelect .txt{
	line-height: 1.5;
	margin-top: 0.5em;
	display: block;
	white-space: nowrap;
}
.c-imgSelect label{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.c-imgSelect input{
	appearance: none;
	display: none;
}
.c-imgSelect input:checked ~ img.main{
	/*box-shadow: 0 0 0 2px var(--maincolor);
	box-shadow: 0 0 0 5px var(--maincolor);*/
	box-shadow: 0 0 0 5px #ff6600;
}
.c-imgSelect input:checked ~ img{
	/*box-shadow: 0 0 0 2px var(--maincolor);*/
	/*box-shadow: 0 0 0 2px #ff6600;*/
	box-shadow: 0 0 0 4px #ff6600;
}
.c-imgSelect input:checked ~ p {
	background-color:#f00;
}
.c-imgSelect.nowrap{
	flex-flow: nowrap;
	width: 100%;
	overflow: auto;
	padding: 2px 2px 0;
}
.c-imgSelect.nowrap li{
	/*min-width: 8.75em;*/
	min-width: 7.25em;
}

@media screen and (max-width: 800px) {
	.c-imgSelect.calcType li{
		max-width: 210px;
		min-width: 30vw;
	}
}

/* ==== 数値設定 */
.c-setValue .value{
	display: flex;
	gap: 1em;
	line-height: 2;
}
.c-setValue .value .txt{
	font-weight: bold;
	width: 40%;
	white-space: nowrap;
}
.c-setValue .value .num{
	flex-grow: 1;
	display: flex;
	align-items: center;
}
.c-setValue .unit{
	text-align: left;
	margin-left: 1em;
	display: inline-block;
}
.c-setValue input[type="text"]{
	text-align: right;
}
.c-setValue .range{
	font-size: 120%;
	display: flex;
	justify-content: flex-end;
}
.c-setValue .range .wrap{
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	width: 240px;
	max-width: calc(100% - 7em);
	margin: 0 1em;
}
.c-setValue .range .wrap input[type="range"]{
	grid-column: 1 / 2;
	grid-row: 1 / 2;
	width: 100%;
	max-width: none;
	margin: 0;
	pointer-events: none;
	position: relative;
	/* -webkit-appearance: none;
  appearance: none;
  outline: none;
  background: transparent; */
}
.c-setValue .range .wrap ::-webkit-slider-thumb{
	pointer-events: auto;
}
.c-setValue .range .wrap ::-webkit-slider-runnable-track{
}

.c-setValue .min{
	text-align: right;
}
.c-setValue .max{
	/*width: 45px;*/
	width: 60px;
}
.c-setValue input[type="range"]{
	margin: 0 1em;
}
.c-setValue.horizontal input[type="text"]{
	width: calc(100% - 4em);
	max-width: 240px;
}
.c-setValue.horizontal input[type="range"]{
	width: 240px;
	max-width: calc(100% - 7em);
}
.c-setValue.vertical .value .num{
	justify-content: flex-end;
	text-align: right;
}
.c-setValue.vertical .unit{
	width: 45px;
}
.c-setValue.vertical input[type="text"]{
	/*width: calc(100% - 45px - 1em);*/
	width: calc(100% - 90px - 1em);
	max-width: 170px;
}
.c-setValue.vertical .range{
	margin-top: 0.5em;
}
.c-setValue.vertical input[type="range"]{
	width: 240px;
	max-width: calc(100% - 7em);
}
@media screen and (min-width: 801px) {
	.c-setValue.horizontal{
		display: flex;
		align-items: center;
	}
	.c-setValue.horizontal > *{
		width: 50%;
	}
}
@media screen and (max-width: 1800px) {
	.c-setValue.vertical .value{
		flex-direction: column;
	}
}
@media screen and (max-width: 800px) {
	.c-setValue.horizontal .range{
		margin-top: 0.5em;
	}
	.c-setValue.horizontal .value .num{
		justify-content: flex-end;
	}
	.c-setValue.horizontal .unit{
		width: 45px;
	}
}

/* ==== 汎用テーブル */
.c-tableA th,.c-tableA td{
	/*font-size: 15px;*/
	line-height: 1.5;
	/*text-align: left;*/
	padding: 0.5em 1.5em;
	height: 2.5em;
	vertical-align: top;
}
.c-tableA thead th{
	font-weight: bold;
}
.c-tableA tbody th{
	/*font-size: 24px;*/
	font-weight: bold;
	color: var(--maincolor);
	padding: 0 0.2em;
	height: auto;
}
.c-tableA thead tr:nth-child(odd) > *{
	background: rgba(0,116,190,0.1);
}
.c-tableA tbody tr:nth-child(even) > *:not(td.not){
	background: rgba(0,116,190,0.1);
}
.c-tableA .blank{
	opacity: 0;
	background: none;
}

.c-scrollWrapper{
	overflow: auto;
}
.c-scrollWrapper > table{
	min-width: 1000px;
	white-space: nowrap;
}
@media screen and (max-width: 800px) {
	.c-scrollWrapperSp{
		overflow: auto;
	}
	.c-scrollWrapperSp > table{
		min-width: 800px;
		white-space: nowrap;
	}

}
/* ページ内リンク */
.pageLink{
	box-sizing: border-box;
	position:fixed;
	color:#FFF;
	border-radius: 3px;
	opacity:0.70;
	cursor:pointer;
	width:40px;
	height:30px;
	font-size:18px;
	line-height:30px;
	text-align:center;
	background-color:#000;
}
.pageLinkModal{
	z-index: 999999999;
}
.pageTop,
.pageTopModal{
	right:10px;
	bottom:51px;
}
.pageDown,
.pageDownModal{
	right:10px;
	bottom:20px;
}
.modal-open {
	overflow: hidden;
	/* スクロールバーが消えたことによるコンテンツの横ずれを防ぐための対策 */
	padding-right: 15px;
}
/* tooltip(吹き出し) */
.my-tooltip-css {
	border: 1px solid #666;
	backgournd: rgba(255,255,0,0.1);
	box-shadow: none;
	font-size: 14px;
}

/* カタログリンク */
.ContactLinkTable {
	width: 100%;
}
.ContactLinkTable tbody > tr:nth-child(even):not(tr.not){
	background-color: #e5f1f8;
}
.ContactLinkTable th,
.ContactLinkTable td {
	padding: 1.0em;
	border: 1px solid #afc2ce;
	text-align:center;
	vertical-align:middle;
}
.ContactLinkTable th {
	font-weight: 700;
}
a.ButtonOn{
	display:inline-block;
	font-size:14px;
	font-weight: 700;
	background-color: #0074be;
	border: none;
	border-radius: 4px;
	padding: 6px 16px;
	color:#fff;
	text-decoration:none;
	margin:2px;
}
.modalClose {
	text-align:center;
	padding: 0.5em 0em 1.0em;
}
.sButton {
    text-decoration: none;
    background-image: linear-gradient(#fff,#f5f8fa);
    border: 1px solid #e6ecf0;
    border-radius: 4px;
    color: #393e42;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
/*    font-weight: bold;　*/
    padding: 8px 14px;
    position: relative;
    text-align: center;
}

.sButton:hover{
    background-color: #e6ecf0;
    background-image: linear-gradient(#fff,#e6ecf0);
    border-color: #e6ecf0;
}

#loading_box {
	width: 360px;
	height: 80px;
	background-color: #FFF;
	position: fixed;
	border-radius: 6px;
/*	border: 1px solid #333; */
	padding-top: 1.0em;
	left: 50%;
	top: 40%;
	transform: translateX(-50%)
	translateY(-50%);
	display: none;
	z-index: 10000;
}
#loading_box p {
	text-align: center;
}

#altMessage01 {
	position: absolute;
	display: inline-block;
	background-color: #fff;
	border-radius: 3px;
	padding: 3px;
	top: 0px;
	left: -100000px;
	border: 1px solid #ddd;
}
