@charset "UTF-8";

/* ==================================================
 blog画面
-------------------------------------------------- */

body,
html {
  height: 100%;
  margin: 0 auto;
}
body::before {
	background-color: rgba(255, 255, 255, 1);	/*White*/
  	width: 100%;/* 横幅を画面全体 */
  	height: 100vh;/* 縦幅を画面全体 */
  	top: 0;/* 上からの配置を0 */
  	left: 0;/* 左からの配置を0 */
  	z-index: -1;/*背景画像になるように重ね順を-1*/
}

.entable_ent {
	width: 100%;
	overflow: hidden;
	word-break: break-all;
	border-collapse: collapse;
	word-wrap: break-word;
	margin-top: 10px;
}

.entable_ent tr {
	border: 1px solid #cccccc;
}

.entable_ent th {
	width: auto;
	margin: 0 auto;
	border: none;
	text-align: center;
	padding: 6px 8px 5px;
	overflow: hidden;
	color: inherit; /*rgba(0,10,2,1);*/
	font-weight: bold;
	font-size: 16px;
	word-break: break-all;
	word-wrap: break-word;
	display: list-item;
	background-color: rgba(234,235,236,1);
}

.entable_ent td{
	width: auto;
	padding: 10px;
	text-align: left;
	vertical-align: middle;
	color: inherit; /*rgba(0,10,2,1);*/
	border: none;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	font-size: 16px;
	line-height:1.3em;
	display: list-item;
}

.parallaxbox {
		box-sizing: border-box;
		color: #00081A;
		font-size: 5rem;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 95%;
		padding: 0;
}
.parallaxbox_half {
		box-sizing: border-box;
		color: #00081A;
		font-size: 5rem;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 45%;
		padding: 0;
}
.parallaxbox_70 {
		box-sizing: border-box;
		color: #00081A;
		font-size: 5rem;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 70%;
		padding: 0;
}
.parallax_scrollbox {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.blog_box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    padding: 10px 30px 30px 30px;
}
.blog_box .blog_title_img {
	display: inline-block;
	width: 100%;
	padding: 20px 10px 30px 10px;
	vertical-align: top;
}
.blog_box .blog_title_text {
    display: inline-block;
	width: 100%;
    padding: 0 10px 30px 10px;
    vertical-align: top;
}
.blog_left {
    width: 100%;
    text-align: center;
	line-height: 1.2em;
    vertical-align: top;
    display: inline-block;
}
.blog_right {
    width: 100%;
    text-align: center;
	line-height: 1.5em;
    vertical-align: top;
    display: inline-block;
}

.child_05 {
	width: 100%;
	color: rgba(255, 255, 255, 1);
	background-color: rgba(255, 72, 0, 1);
	font-size: 14px;
    padding: 20px 10px 20px 10px;
}
.child_05 .attention_area {
    display: flex;
    justify-content: space-between;
	align-items: center;
    flex-direction: row;
}
.child_05 .attention_area ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
}
.child_05 .attention_area ul li {
	padding: 0 30px 0 30px;
}
.child_05 .attention_area ul li:first-of-type {
	flex-grow: 1;
}
.child_05 .attention_area ul li:first-of-type p {
	font-size:clamp(20px,2vw,24px);
	padding-bottom:16px;
	text-align: center;
}
.child_05 .attention_area ul li p {
	font-size:clamp(8px,2vw,12px);
	padding-bottom:6px;
}
.child_05 .attention_area .mail_jump_go_size {
	width: 70px;
}
.child_05 .attention_area ul li:last-of-type {
	flex-grow: 1;
}
.child_05 .attention_area ul li:last-of-type div {
	padding: 10px 5px 0 5px;
	text-align: center;
}

/* 上はスマホに適用するスタイルを書く */
@media screen and (min-width:850px) and ( max-width:959px) {
	/* タブレットに適用したいスタイル */
	.pc_menu {
		display: block;
	}
	.sp_menu {
		display: none;
	}
	.entable_ent {
		width: 100%;
	}
	.entable_ent th {
		font-size: 14px;
		text-align: center;
		vertical-align: middle;
		display: table-cell;
	}
	.entable_ent td {
		padding: 10px;
		width: 70%;
		border-left: 1px solid #cccccc;
		font-size: 14px;
		display: table-cell;
	}
    .blog_box {
        width: 100%;
        padding: 30px 100px 30px 100px;
    }
    .blog_box .blog_title_img {
    	width: 35%;
        padding: 20px 0 40px 0;
    }
    .blog_box .blog_title_text {
        width: 64%;
        padding: 25px 0 0 20px;
    }
    .child_05 {
		width: 100%;
        padding: 20px 30px 20px 30px;
	}
	.child_05 .attention_area ul li:first-of-type {
		flex-grow: 0;
	}
	.child_05 .attention_area ul li:first-of-type p {
		padding-bottom: 0;
	}
	.child_05 .attention_area ul li:last-of-type div {
		padding: 0 5px 0 5px;
	}

}
@media screen and (min-width:960px) and ( max-width:1280px) {
	/* 通常のデスクトップに適用したいスタイル */
	.pc_menu {
		display: block;
	}
	.sp_menu {
		display: none;
	}
	.entable_ent {
		width: 100%;
	}
	.entable_ent th {
		font-size: 14px;
		text-align: center;
		vertical-align: middle;
		display: table-cell;
	}
	.entable_ent td {
		padding: 10px;
		width: 70%;
		border-left: 1px solid #cccccc;
		font-size: 14px;
		display: table-cell;
	}
    .blog_box {
        width: 100%;
        padding: 30px 180px 30px 180px;
    }
    .blog_box .blog_title_img {
    	width: 35%;
        padding: 20px 0 40px 0;
    }
    .blog_box .blog_title_text {
        width: 64%;
        padding: 25px 0 0 20px;
    }
    .child_05 {
		width: 100%;
        padding: 20px 30px 20px 30px;
	}
	.child_05 .attention_area ul li:first-of-type {
		flex-grow: 0;
	}
	.child_05 .attention_area ul li:first-of-type p {
		padding-bottom: 0;
	}
	.child_05 .attention_area ul li:last-of-type div {
		padding: 0 5px 0 5px;
	}

}
@media screen and (min-width:1281px) {
	/* 横幅の広いデスクトップに適用したいスタイル */
	.pc_menu {
		display: block;
	}
	.sp_menu {
		display: none;
	}
	.entable_ent {
		width: 100%;
	}
	.entable_ent th {
		font-size: 14px;
		text-align: center;
		vertical-align: middle;
		display: table-cell;
	}
	.entable_ent td {
		padding: 10px;
		width: 70%;
		border-left: 1px solid #cccccc;
		font-size: 14px;
		display: table-cell;
	}
    .blog_box {
        width: 100%;
        padding: 30px 250px 30px 250px;
    }
    .blog_box .blog_title_img {
    	width: 35%;
        padding: 20px 0 40px 0;
    }
    .blog_box .blog_title_text {
        width: 64%;
        padding: 25px 0 0 20px;
    }
	.child_05 {
		width: 100%;
        padding: 20px 30px 20px 30px;
	}
	.child_05 .attention_area ul li:first-of-type {
		flex-grow: 0;
	}
	.child_05 .attention_area ul li:first-of-type p {
		padding-bottom: 0;
	}
	.child_05 .attention_area ul li:last-of-type div {
		padding: 0 5px 0 5px;
	}

}

.linkBtn {
 	width: auto;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	padding: 8px 30px 10px 30px;
	border: solid 1px #CCC;
	border-radius: 4px;
	background: -moz-linear-gradient(rgba(255,255,255,1), rgba(255,255,255,1));
	background: -webkit-linear-gradient(linear, 100% 0%, 100% 100%, from(rgba(255,255,255,1)), to(rgba(255,255,255,1)));
	background: -ms-linear-gradient(rgba(255,255,255,1), rgba(255,255,255,1));
}

a.linkBtn:hover {
	background: -moz-linear-gradient(rgba(255,255,255,1), rgba(255,255,255,1));
	background: -webkit-linear-gradient(linear, 100% 0%, 100% 100%, from(rgba(255,255,255,1)), to(rgba(255,255,255,1)));
	background: -ms-linear-gradient(rgba(255,255,255,1), rgba(255,255,255,1));
}

.deleBtn {
 	width: auto;
	color: #ff6633;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	padding: 8px 30px 10px 30px;
	border: solid 1px #ff6633;
	border-radius: 4px;
	background: -moz-linear-gradient(rgba(255,255,255,1), rgba(255,255,255,1));
	background: -webkit-linear-gradient(linear, 100% 0%, 100% 100%, from(rgba(255,255,255,1)), to(rgba(255,255,255,1)));
	background: -ms-linear-gradient(rgba(255,255,255,1), rgba(255,255,255,1));
}

a.deleBtn:hover {
	background: -moz-linear-gradient(rgba(255,255,255,1), rgba(255,255,255,1));
	background: -webkit-linear-gradient(linear, 100% 0%, 100% 100%, from(rgba(255,255,255,1)), to(rgba(255,255,255,1)));
	background: -ms-linear-gradient(rgba(255,255,255,1), rgba(255,255,255,1));
}


/* blog title
-------------------------------------------------- */
/*
.blog_wrapper {
	width: 100vw;
  	height: auto;
  	min-height: 20vh;
	background: radial-gradient(circle closest-side, rgba(219, 180, 0, 0.8), rgba(0,10,2,1));

	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog_wrapper .title_area {
	width:100%;
	text-align: center;
}

.blog_wrapper .title_area .blog_title {
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 2px;
	text-align: center;
	color: #ffffff;
}

/* blogTitlelist
-------------------------------------------------- */
/*
.blog_title_img {
	display: inline-block;
	width: 100%;
	padding: 20px;
	vertical-align: top;
}
.blog_title_text {
	display: inline-block;
	width: 100%;
	padding: 20px;
	vertical-align: top;
}



/* mntblog画面
-------------------------------------------------- */
.mntblog {
	width: 90%;
	margin: auto;
	padding: 120px 0 0 0;
}

.mntblog #must {
	-webkit-border-radius: 4px;
	border-radius: 4px;
	font-style: normal;
	font-size: 81.25%;
	color: #FFF;
	background-color: rgba(118,158,196,1);
	padding: 1px 3px;
	font-weight: normal;
}

.mntblog .image_size {
	width: 100%;
}

.mntblog .blog_image_attr_wrapper {
	padding: 30px 0 0 0;
}

.mntblog .blog_image_wrapper {
	padding: 0 15px 30px 15px;
}

.mntblog select {
	display: block;
	color: inherit; /*rgba(0,10,2,1);*/
	font-size: 16px;
	padding: 0 8px;
	margin: 3px 0 12px 0;
	width: 100%;
	height: 40px;
	border: none;
	border-radius: 4px;
	border: 1px solid #cccccc;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	/*background-image: url('../images/select.png');*/
	background-repeat: no-repeat;
	background-size: 8px 6px;
	background-position: 96% 50%;
	background-color: #ffffff;
}

.mntblog .entryLineInput_size16 {
	width: 100%;
	margin: 2px 0 12px 0;
	padding: 3px 5px;
    font-size: 16px;
	color: inherit; /*rgba(0,10,2,1);*/
	border-radius: 4px;
	border: 1px solid #cccccc;
	display: inline-block;
	text-decoration: none;
	vertical-align: middle;
	border-radius: 3px;
}

.mntblog .entryTextarea {
	width: 100%;
    font-size: 16px;
	resize: none;
	height: 10em;
	margin: 3px 0;
	padding: 3px 5px;
	color: inherit; /*rgba(0,10,2,1);*/
	border-radius: 4px;
	border: 1px solid #cccccc;
	border-radius: 3px;
}

.mntblog .mnt.onebtnarea {
	padding: 30px 0 30px 0;
}

.mntblog .mnt.btnarea input.submit {
	padding-top:8px;
}

.mntblog .sp {
	display: block;
}

.mntblog .pc {
	display: none;
}

/* 上はスマホに適用するスタイルを書く */
@media screen and (min-width:600px) and ( max-width:959px) {
	/* タブレットに適用したいスタイル */
	.mntblog {
		width: 90%;
		margin: auto;
		padding-top: 120px;
	}
	.mntblog .sp {
		display: none;
	}
	.mntblog .pc {
		display: block;
	}
}
@media screen and (min-width:960px) and ( max-width:1280px) {
	/* 通常のデスクトップに適用したいスタイル */
	.mntblog {
		width: 80%;
		margin: auto;
		padding-top: 120px;
	}
	.mntblog .sp {
		display: none;
	}
	.mntblog .pc {
		display: block;
	}
}
@media screen and (min-width:1281px) {
	/* 横幅の広いデスクトップに適用したいスタイル */
	.mntblog {
		width: 70%;
		margin: auto;
		padding-top: 120px;
	}
	.mntblog .sp {
		display: none;
	}
	.mntblog .pc {
		display: block;
	}
}

/* 　アップロードフォーム
-------------------------------------------------- */
.mntblog .upload {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;	/* flexで指定する　*/
	justify-content: center;
    align-items: center;
	background-color: rgba(0, 0, 0, .3);
	z-index: 9999;
}

.mntblog .upload .inner {
	margin: auto;
	padding: 20px 20px 30px 20px;
	width: 90%;
	background-color: #ffffff;
	border-radius: 10px;
	z-index: 10000;
}

.mntblog .upload .txt {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.5em;
	border: none;
}

.mntblog .upload .txt strong {
	display: block;
	margin: 0 0 10px;
	padding: 0 0 10px;
	font-size: 18px;
	text-align: center;
	border-bottom: 1px solid #cccccc;
}

.mntblog .upload .id {
	margin: 0 0 20px;
	text-align: center;
	font-size: 20px;
}

.mntblog .upload .id strong {
	font-weight: 700;
}

.mntblog .upload textarea {
	width: 100%;
	height: 8.5em;
	font-size: 16px;
}

.mntblog .upload input {
	display: block;
	margin-top: 10px;
	padding: 8px 0;
	width: 49%;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	border-radius: 4px;
	border: none;
}

.mntblog .upload .upload_image_box {
	text-align:center;
	margin-top: 10px;
	margin-bottom: 30px;
}

.mntblog .upload input.submit {
	float: left;
	background-color: #5f0000;
}

.mntblog .upload input.close {
	margin: auto;
	background-color: #5f0000;
}

.mntblog .upload input.cancel {
	float: right;
	background-color: #777777;
}

.mntblog .upload .closebtn {
	position: absolute;
	right: -15px;
	top: -15px;
	background-color: #5f0000;
	border-radius: 50%;
}

.mntblog .upload .closebtn .inner_popup_close {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 26px;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	color: #ffffff;
	vertical-align: top
}

.mntblog .upload .checkbox_input {
	display: none;
}
.mntblog .upload .checkbox_parts {
  	padding-left: 20px;
  	position:relative;
  	margin-right: 20px;
	font-size: 14px;
}
.mntblog .upload .checkbox_parts::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #999;
	border-radius: 4px;
}
.mntblog .upload .checkbox_input:checked + .checkbox_parts {
  	color: #009a9a;
}
.mntblog .upload .checkbox_input:checked + .checkbox_parts::after {
	content: "";
	display: block;
	position: absolute;
	top: -5px;
	left: 5px;
	width: 7px;
	height: 14px;
	transform: rotate(40deg);
	border-bottom: 3px solid #009a9a;
	border-right: 3px solid #009a9a;
}

/* 上はスマホに適用するスタイルを書く */
@media screen and (min-width:600px) and ( max-width:959px) {
	.mntblog .upload .inner {
		width: 50%;
	}

}
@media screen and (min-width:960px) and ( max-width:1280px) {
	/* 通常のデスクトップに適用したいスタイル */
	.mntblog .upload .inner {
		width: 50%;
	}

}
@media screen and (min-width:1281px) {
	/* 横幅の広いデスクトップに適用したいスタイル */
	.mntblog .upload .inner {
		width: 50%;
	}

}

/* inquiry title
-------------------------------------------------- */
.inquiry_wrapper {
	width: 100vw;
  	height: auto;
  	min-height: 20vh;
	background-size: cover;
    background-position: center;
	background: radial-gradient(circle closest-side, rgba(219, 180, 0, 0.8), rgba(0,10,2,1));
	/*background-image: url('../images/img_006.png');*/

	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.inquiry_wrapper .title_area {
	width:100%;
	text-align: center;
}

.inquiry_wrapper .title_area .inquiry_title {
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 2px;
	text-align: center;
	color: #ffffff;
}

/* inquiry 画面
-------------------------------------------------- */
.inquiry {
	width: 90%;
	margin: auto;
	padding: 120px 0 0 0;
}

.inquiry .sp {
	display: block;
}

.inquiry .pc {
	display: none;
}

.inquiry .entryLineInput_size16 {
	width: 100%;
	margin: 2px 0 12px 0;
	padding: 3px 5px;
    font-size: 16px;
	color: inherit; /*rgba(0,10,2,1);*/
	border-radius: 4px;
	border: 1px solid #cccccc;
	display: inline-block;
	text-decoration: none;
	vertical-align: middle;
	border-radius: 3px;
}

.inquiry .entryTextarea {
	width: 100%;
    font-size: 16px;
	resize: none;
	height: 10em;
	margin: 3px 0;
	padding: 3px 5px;
	color: inherit; /*rgba(0,10,2,1);*/
	border-radius: 4px;
	border: 1px solid #cccccc;
	border-radius: 3px;
}

#must {
	-webkit-border-radius: 4px;
	border-radius: 4px;
	font-style: normal;
	font-size: 81.25%;
	color: #FFF;
	background-color: rgba(118,158,196,1);
	padding: 1px 3px;
	font-weight: normal;
}
#privacy_box {
	height: 100px;
	overflow: auto;
	border: 1px solid #CCC;
	padding: 5px;
	text-align: left;
	line-height:1.3em;
	color: rgba(254,238,237,1);
	background-color: rgba(0,8,26,0.80);

}
#privacy_box ol {
	padding-left: 2em;
}
#privacy_box ol li {
	list-style-type: decimal;
	list-style-position: outside;
}
#privacy_box ol li ul {
	border: none;
	margin: 0;
	padding: 0 1em;
}
#privacy_box ol li ul li {
	border: none;
	list-style-type: disc;
}

.inquiry .checkbox_input {
	display: none;
}

.inquiry .checkbox_parts {
  	padding-left: 20px;
  	position: relative;
  	margin-right: 20px;
	font-size: 14px;
}

.inquiry .checkbox_parts::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #999;
	border-radius: 4px;
}

.inquiry .checkbox_input:checked + .checkbox_parts {
  	color: rgba(88, 86, 214, 1.0); /*#009a9a;*/
}

.inquiry .checkbox_input:checked + .checkbox_parts::after {
	content: "";
	display: block;
	position: absolute;
	top: -5px;
	left: 5px;
	width: 7px;
	height: 14px;
	transform: rotate(40deg);
	border-bottom: 3px solid rgba(88, 86, 214, 1.0); /*#009a9a;*/
	border-right: 3px solid rgba(88, 86, 214, 1.0); /*#009a9a;*/
}

/* 上はスマホに適用するスタイルを書く */
@media screen and (min-width:600px) and ( max-width:959px) {
	/* タブレットに適用したいスタイル */
	.inquiry {
		width: 80%;
		margin: auto;
	}
	.inquiry .sp {
		display: none;
	}
	.inquiry .pc {
		display: block;
	}
}
@media screen and (min-width:960px) and ( max-width:1280px) {
	/* 通常のデスクトップに適用したいスタイル */
	.inquiry {
		width: 70%;
		margin: auto;
	}
	.inquiry .sp {
		display: none;
	}
	.inquiry .pc {
		display: block;
	}
}
@media screen and (min-width:1281px) {
	/* 横幅の広いデスクトップに適用したいスタイル */
	.inquiry {
		width: 60%;
		margin: auto;
	}
	.inquiry .sp {
		display: none;
	}
	.inquiry .pc {
		display: block;
	}
}
