@charset "UTF-8";
@import url("grid.css");

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

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	background-color:#efefef;
	background-image:
	linear-gradient(90deg, rgba(220,221,221,.5) 50%, transparent 50%),
	linear-gradient(rgba(220,221,221,.5) 50%, transparent 50%);
	background-size:15px 15px;
	font-family: "新丸ゴ R";
}

.container {
	background: #fff;
}

form {
	margin-bottom:0px;
}


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

header section.container {
	padding: 1rem 1.5rem 0 1.5rem;
}

.title {
	display: flex;
	flex-direction: row;
}

.cpname img{
	height:70px;
}

.cptelfax img{
	height:70px;
}

.cptelfax {
	margin-left: auto;
	padding: 0 0 0 0;
}

header section.menu {
	background: #66b6c0;
	padding: 0 0 0 0;
	border: 1px solid #dcdddd;
}

nav ul {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	list-style: none;
	margin-bottom: 0;
}

nav li {
	flex: 1 0 auto;
	margin-bottom: 0;
	border-right: 1px solid #dcdddd;
	font-size: 1.5rem;
}

nav a.navfirst {
	border-left: none;
}

nav a.navlast {
	border-right: none;
}

nav a.navactive {
	color: #0a445a;
	background: #d4ecf3;
}

nav a {
	display: block;
	padding: 2rem 1rem;
	text-decoration: none;
	text-align: center;
	color: #fff;
	transition: 1.0s;
	-webkit-transition: 1.0s;
	-moz-transition: 1.0s;
	-o-transition: 1.0s;
}

nav a:hover {
	color: #0a445a;
	background: #d4ecf3;
}

@media screen and (min-width: 768px){
	/* ヘッダー PC */

	#open,#close {
	    display: none !important;
	}

	#navi {
	    display: block !important;
	}

}

@media screen and (max-width: 768px){
	/* ヘッダー スマホ */

	.title {
		flex-direction: column;
		text-align: left;
		margin-bottom: 10px;
	}

	.cptelfax img {
		height:unset;
		width: 100%;
	}

	.cptelfax {
		margin-left: 0;
		text-align: center;
	}

	/* スマホ時はメニューボタンを表示 */
	#open,#close  {
		display: block;
		border: none;
		position: absolute;
		top: 20px;
		right: 12px;
		height:50px;
	}

	#open img { height:50px; }
	#close img { height:50px; }

	/* スマホ時はメニューを非表示 */
	#navi {
	    display: none;
	}

	nav ul {
		flex-direction: column;
	}

	nav li {
		padding-top: 0;
		border-bottom: 1px solid #dcdddd;
		margin-bottom: 0;
	}

}

/*フッター
-------------------------------------*/
footer section.container {
	background: #66b6c0;
	padding: 2rem 2rem 2rem 2rem;
	color: #fff;
}

footer .seal img {
	height:50px;
}

/*コピーライト
-------------------------------------*/
.copyright section.container {
	text-align: center;
	padding: 1rem 0 1rem 0;
	background-color: #fff;
	color: #0c1010;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
	position: fixed;
	bottom: 15px;
	right: 15px;
	margin-bottom:4rem;
}
#pagetop a img { width: 50px; height:50px; }

/*パンくずリスト
-----------------------------------*/
.breadcrumb {
	margin: 0 0 1em 0;
	padding: 0;
}
.breadcrumb li {
	list-style-type: none;
}
.breadcrumb li a {
	display: inline-block;
	color: #959fa5;
}


/*スライダー
-------------------------------------*/

.slick-prev::before, .slick-next::before{
	color: #20466A;
}

.slider{
	width: 95%;
	margin-left: 12px;
	margin-right: 12px;
}

/*メインコンテンツ
-------------------------------------*/

main section.container {
	background: #fff;
}

div.twtbox{
	border:dotted 1px #20466A;
	padding-right:1px;
}

.strStr {
	font-weight: bold;
	font-size: 1.7rem;
	color: #f3a7a5;
}

.strStrStr {
	font-weight: bold;
	font-size: 1.9rem;
	color: red;
}

.strReq {
	margin-left: 0.5em;
	color: #E60012;
	font-weight: bold;
	font-size: 1.0em;
}
.strNtc {
	margin-left: 0.5em;
	font-weight: normal;
	font-size: 0.7em;
}
.inputLabel {
	font-size: 2.0rem;
}

.stitch {
	background-color:#fff;
	border:1px dashed #66b6c0;
	box-shadow: 0 6px 18px rgba(12, 16, 16, 0.3);
}

@media screen and (min-width: 768px){
	.stitch {
		padding: 3rem 1.5rem;
		margin-bottom: 1.0rem;
	}
}
@media screen and (max-width: 768px){
	.stitch {
		padding: 3rem 0rem;
		margin-bottom: 1.5rem;
	}
}

div.policy, div.gaiyo, div.access, div.kanyu, div.hikaku{
	margin-bottom:1em;
}

/*ボタン
-------------------------------------*/

box {
	position: relative;
	display: block;
	margin-bottom: 1.5rem;
	text-align: center;
	vertical-align: middle;
	border-radius: 4rem;
	padding: 1.5rem 2rem 1.5rem 0rem;
	overflow: hidden;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

@media screen and (min-width: 768px){
	box {
		font-size: 1.6rem;
		margin-left: 10%;
		margin-right: 10%;
	}
}
@media screen and (max-width: 768px){
	box {
		font-size: 1.6rem;
		margin-left: 2%;
		margin-right: 2%;
	}
}

box a {
	display: block;
	position: relative;
	text-decoration: none;
	color: #fff;
}

box a:hover {
	text-decoration: none;
	color: #fff;
}

box:hover {
  text-decoration: none;
  color:#fff;
}

box.menubox::before, box.linkbox::before, box.linkbox2::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 4rem;
}

box.menubox::after, box.linkbox::after, box.linkbox2::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

box.menubox {
	background: #009e3b;
}
box.menubox::before {
	background-color: #b5d681;
}
box.menubox:hover {
	background-color: #80af68;
}

box.linkbox {
	background: #ee780c;
}
box.linkbox::before {
	background-color: #fabf13;
}
box.linkbox:hover {
	background-color: #f4a347;
}

box.downloadbox {
	background: #ee780c;
	overflow: visible;
	border-radius: 1rem;
	padding-top: 2.5rem;
}

box.downloadbox span {
	width:90%;
	font-size: 1.5rem;
	position: absolute;
	top: -1rem;
	left: 50%;
	transform: translateX(-50%);
	-webkit- transform: translateX(-50%);
	color: #ee780c;
	border: 2px solid #ee780c;
	border-radius: 0.5rem;
	background: #fff;
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

box.downloadbox:hover {
  background-color: #f4a347;
}


box.linkbox2 {
	background: #0a445a;
	overflow: visible;
	border-radius: 1rem;
	padding-top: 1.5rem;
}

box.linkbox2:hover {
  background-color: #4874ae;
}


/*アイテム
-------------------------------------*/

div.insitem img.full {
	margin-left:5%;
	width:90%;
}
div.insitem img.bann {
	margin-left:10%;
	width:80%;
	max-width:350px;
}

div.insmida {
	font-size: 1.6rem;
	color: #0a445a;
	background: #d4ecf3;
	border-left: solid 5px #66b6c0;
	margin-bottom:20px;
	padding: 0.5rem;
	margin-left: 2%;
	margin-right: 2%;
}

div.insmida2 {
	font-size: 1.6rem;
	color: #0a445a;
	background: #b5d681;
	border-left: solid 5px #009e3b;
	margin-bottom:20px;
	padding: 0.5rem;
	margin-left: 2%;
	margin-right: 2%;
}

div.insstr {
	font-size: 1.6rem;
	margin-bottom:10px;
	padding: 0.5rem;
	margin-left: 2%;
	margin-right: 2%;
}

div.insstr2 {
	font-size: 1.2rem;
	margin-bottom:4px;
	padding: 0.5rem;
	margin-left: 2%;
	margin-right: 2%;
}

/*表
-------------------------------------*/

.tdhead {
	border: solid 1px #0c1010;
	margin: -1px 0px 0px -1px;
	text-align:center;
	background-color:#d3d3d4;
	padding-top:5px;
}

.tddata {
	border: solid 1px #0c1010;
	margin: -1px 0px 0px -1px;
	padding-top:5px;
	padding-left:10px;
	padding-right:10px;
}

/*プライバシーポリシー
-------------------------------------*/
.policy {
	font-family: "黎ミン M";
}
.policy ul{
	list-style: none;
}
.gaiyo {
	font-family: "黎ミン M";
}

.access {
	font-family: "黎ミン M";
}

.kanyu {
	font-family: "黎ミン M";
}
.hikaku {
	font-family: "黎ミン M";
}

/*入力フォーム系
-------------------------------------*/

input.submit_button {
	display:block;
	height:50px;
	margin:1em 0;
	line-height:50px;
	color: #E60012;
	border-radius:25px;
	text-decoration:none;
	text-align:center;
	background:#F3A7A5;
	box-shadow:0 5px 0 #E89292;
	font-size: 1.5em;
}

#staffnum, #telnum {
	font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}
#sampleimg {
	width:auto;
	height:auto;
	max-width:90%;
	max-height:90%;
}
#sampleimg, #previewQ, #previewI, #previewJ, #previewC {
	width:auto;
	height:auto;
	max-width:70%;
	max-height:70%;
}
#prvDelQ, #prvDelI, #prvDelJ, #prvDelC {
	width:25px;
}
.picIn {
	position:relative;
}
.fileLabel {
	display:block;
	height:50px;
	margin:1em 0;
	line-height:50px;
	color:#0c1010;
	border-radius:25px;
	text-decoration:none;
	text-align:center;
	background:#CCDBA0;
	box-shadow:0 5px 0 #BED38B;
	cursor: pointer;
}
.fileLabelQ {
	display:block;
	height:50px;
	margin:1em 0;
	line-height:50px;
	color:#0c1010;
	border-radius:25px;
	text-decoration:none;
	text-align:center;
	background:#F6EFC2;
	box-shadow:0 5px 0 #EADEA3;
	cursor: pointer;
}
.fileInput {
	position:absolute;
	top:0px;
	left:0px;
	opacity:0;
}

