@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定 */
#splash {
	/* fixedで全面に固定 */
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #50829B;
	text-align: center;
	color: #50829B;
}

/* Loading画像中央配置 */
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-20%, -50%);
}

/* Loading アイコンの大きさ設定 */
#splash_logo svg {
    width: 600px;
}

/*=============== SVGアニメーション内の指定 =================*/

/* アニメーション前の指定 */
#mask path {
    fill-opacity: 0; /* 最初は透過0で見えない状態 */
    transition: fill-opacity .5s; /* カラーがつく際のアニメーション0.5秒で変化 */
    fill: none; /* 塗りがない状態 */
    stroke: #FFF; /* 線の色 */
}

/* アニメーション後に.doneというクラス名がで付与された時の指定 */
#mask.done path {
    fill: #FFF; /* 塗りの色 */
    fill-opacity: 1; /* 透過1で見える状態 */
    stroke: none; /* 線の色なし */
}


/** 上下に画面が割れる **/
body.home {
    background: #50829B; /* 遷移アニメーションと同じ色を指定 */
}
body:not(.home) {
    background: #FFF;
}
body.appear {
    background: #FFF; /* 画面を開いた後の背景色を指定 */
}
/* 画面遷移アニメーション */
.splashbg1,
.splashbg2 {
    display: none;
}

/* bodyにappearクラスがついたら出現 */
body.appear .splashbg1,
body.appear .splashbg2 {
	display: block;
}

/*上に消えるエリア*/
body.appear .splashbg1 {
	animation-name: PageAnime;
	animation-duration: .5s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	content: "";
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	bottom: 50%;
	left: 0;
	transform: scaleY(1);
	background-color: #50829B; /* 伸びる背景色の設定 */
}
@keyframes PageAnime{
  0% {
    transform-origin: top;
    transform: scaleY(1);
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}

/*下に消えるエリア*/
body.appear .splashbg2 {
	animation-name: PageAnime2;
	animation-duration: .5s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	content: "";
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	top: 50%;
	left: 0;
	transform: scaleY(1);
	background-color: #50829B; /* 伸びる背景色の設定 */
}

@keyframes PageAnime2 {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

/* 画面遷移の後現れるコンテンツ設定 */
#main_container{
  opacity: 0; /* はじめは透過0に */
}

/*bodyにappearクラスがついたら出現*/
body.appear #main_container{
  animation-name:PageAnimeAppear;
  animation-duration:0.5s;
  animation-delay:0.1s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
  	opacity: 0;
  }
  100% {
  	opacity: 1;
  }
}

/* ------------- スクロールフェードインDown用 ------------- */
body:not(.home) {
	animation: constant 2s ease 0s 1 normal;
	-webkit-animation: constant 2s ease 0s 1 normal;
}
@keyframes constant {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes constant {
    0% {opacity: 0}
    100% {opacity: 1}
}
/* ------------- スクロールフェードインDown用 END ------------- */ 


/** 順番に現れる **/
.box {
  opacity: 0;
}
/*==================================================
ふわっ
===================================*/
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
  	transform: translateY(100px);
  }
  to {
    opacity: 1;
  	transform: translateY(0);
  }
}

/* 拡大 */
.zoomIn {
	animation-name: zoomInAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes zoomInAnime {
  from {
  	transform: scale(0.8);
  	opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/*========= 1文字ずつ出現させるためのCSS ===============*/
.eachTextAnime span {
	opacity: 0;
}
.eachTextAnime.appeartext span {
	animation:text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
  	opacity:0;
  }
  100% {
  	opacity:1;
  }
}


/*==================================================
　テキストが入れ替わる
===================================*/
.gnavi li a {
		/* テキストの基点とするためrelativeを指定 */
		position: relative;
		/* はみ出る要素を隠す */
		overflow: hidden;
		padding: 12px 60px;
}

.gnavi li span {
  /* 絶対配置でテキストの位置を決める */
  position: absolute;
  left: 50%;
  top: 0;
  /* アニメーションの指定 */
  transition: all .5s;
  transform: translate(-50%, 0); /* X方向に-50% ※中央寄せにするため */
  /* ブロック要素にして透過なし、テキスト折り返しなし */  
  display: block;
  opacity: 1;
  white-space: nowrap;
}

/* 差し替わるテキストの設定 */
.gnavi li span:nth-child(2) {
  opacity:0; /* 透過0に */
    transform: translate(-50%,100%); /* X方向に-50% Y方向に100% */
}

/* hoverするとテキストが入れ替わる設定 */
.gnavi li:hover span:nth-child(1) {
  opacity: 0; /* 透過0に */
    transform: translate(-50%,-100%); /* X方向に-50% Y方向に-100% */
}

.gnavi li:hover span:nth-child(2) {
  opacity: 1; /* 不透明に */
  transform: translate(-50%, 0); /* X方向に-50% Y方向に0 */
}


/*==================================================
　左から右に線が伸びる（下部）
===================================*/
.sitelinks p a{
  /* 線の基点とするためrelativeを指定 */
  position: relative;
}
.sitelinks p a:hover {
  color: #FFF;
}
.sitelinks p a::after {
    content: '';
    /* 絶対配置で線の位置を決める */
    position: absolute;
    bottom: -5px;
    left: 0;
    /* 線の形状 */
    width: 100%;
    height: 2px;
    background: #FFF;
    /* アニメーションの指定 */
    transition: all .3s;
    transform: scale(0, 1); /* X方向0、Y方向1 */
    transform-origin: left top; /* 左上基点 */
}

/* 現在地とhoverの設定 */
.sitelinks p a:hover::after {
    transform: scale(1, 1); /* X方向にスケール拡大 */
}


/*==================================================
パタッ
===================================*/

/* 右へ */
.flipRight {
	animation-name: flipRightAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	perspective-origin: right center;
	opacity: 0;
}
@keyframes flipRightAnime {
  from {
  	transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
  	opacity: 0;
  }
  to {
	  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
	  opacity: 1;
  }
}



/* 背景が下から出現＋テキスト */
.bgDU {
  position: relative; /* テキストの基点となる位置を定義 */
}
.bgDU span.mask {
  position: relative; /* 背景色の基点となる位置を定義 */
    display: block;
    line-height: 0; /* 行の高さを0にする */
    overflow: hidden; /* 拡大してはみ出る要素を隠す */
}
.bgDU span.mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  opacity: 0; /* 透過0 */
  transition: .3s ease-in-out; /* 移り変わる速さを変更したい場合はこの数値を変更 */
  transform: translateY(100%);
  background: #50829B; /* 背景色 */
  width: 100%;
  height: 100%; 
}
.bgDU:hover span.mask::before { /* hoverした時の変化 */
  opacity: .8; /* 透過なしに変化 */
  transform: translateY(0);
}
.bgDU span.cap { /* 画像の上のテキスト */
  position: absolute;
  opacity:0; /* 透過0 */
  transition: .5s ease-in-out; /* 移り変わる速さを変更したい場合はこの数値を変更 */
  z-index:3; /* テキストを前面に出す */
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%); /* テキストの位置中央指定 */
  color: #fff; /* テキストの色を変えたい場合はここを修正 */
  line-height: 1.5; /* 行の高さを1.5にする */
}
.bgDU:hover span.cap { /* hoverした時の変化 */
  opacity: .8; /* 透過なしに変化 */
}


/*========= レイアウトのためのCSS ===============*/
html {
	overflow-y: scroll;
	overflow-x: hidden;
}
/* フォントの定義 */
@font-face {
	font-family: 'NotoSansCJKjp';
	src: url('../fonts/NotoSansCJKjp/NotoSansCJKjp-Medium.otf') format('OpenType');	
}
body {
	font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
	color: #777;
	margin-top: 0;
}
body a {
	transition: .2s;
	color: #000;
}
.pageOuter {
	width: 100%;
}

/* ヘッダー */
table.header-table {
	width: 100%;
	height: auto;
}
table.pconly {
	display: none;
}
div.pconly {
	display: none;
}
td.border-line {
	height: auto;
	display: none;
}
img.top-border {
	width: 100%;
}
ul.menu {
	margin: 0;
	padding: 0;
}
li.menu {
	display: inline-block;
	width: 32%;
	text-align: center;
	padding: 0 0 10px;
}
li.menu a {
	text-decoration: none;
}
.nav-menu li.menu a {
    display: inline-block;
    text-align: center;
}
div.menu-left {
	float: left;
}
div.menu-center {
	float: left;
}
div.menu-right {
	float: left;
}

li.pconly {
	display: none;
}
p.header-tel {
	font-size: large;
	font-weight: bold;
}
.sponly .header-tel {
	position: relative;
	top: -17px;
	margin:  0;
}
div.menu-left {
	width: 100%;
}
img.blank-img {
	width: 0px;
}
div.menu-center {
	width: 100%;
}
div.menu-right {
	width: 100%;
}
.button-toggle {
    width: 70px;
    height: 34px;
    color: #FFFFFF;
    line-height: 35px;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    background: #50829B;
    font-size: 16px;
    border: 1px solid #50829B;
	position: absolute;
	top: 10px; 
	right: 8%;
}

/* コンテンツ01（ターゲット） */
h2.stitch {
  position: relative;
  text-align: center;
  border: 2px solid #000;
  background: #fff;
  margin-bottom: 0;
  border-radius: 20px;
  min-width: 300px;
}

h2.stitch:before,
h2.stitch:after {
  position: absolute;
  content: '';
}

h2.stitch:before {
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
}

h2.stitch:after {
  top: 4px;
  left: 4px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 2px dashed #000;
  background: #fff;
  border-radius: 17px;
}

h2.stitch i {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 60px;
  position: absolute;
  z-index: 2;
  top: -23px;
  left: calc(50% - 38px);
  width: 80px;
  height: 60px;
  text-align: center;
}

h2.stitch span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1.5rem;
  font-size: 18px;
}

h2.stitch span:before,
h2.stitch span:after {
  position: absolute;
  content: '';
}

h2 span:before {
  top: -34px;
  left: calc(50% - 34px);
  width: 68px;
  height: 40px;
  border: 2px dashed #000;
  border-radius: 50vw 50vw 0 0;
}

h2.stitch span:after {
  position: absolute;
  top: 4px;
  left: calc(50% - 34px);
  width: 72px;
  height: 10px;
  background: #fff;
}
.top-message {
	padding: 10px;
    margin: 50px auto 0;
}
.catch-top {
	width: 100%;
}
.catch-top-title {
	width: 25vw;
	font-size: 28px;
	-webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	align-items: center; /* 縦方向中央揃え */
	-webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
	justify-content: center; /* 横方向中央揃え */
}
.catch-top-subtitle {
	padding-left: 30px;
	font-size: 18px;
	-webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	align-items: center; /* 縦方向中央揃え */
	-webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
	justify-content: center; /* 横方向中央揃え */
}
.catch-content {
	margin: 0 1em;
	display: flex;
	flex-wrap: wrap;
}
#custom_html-2 {
	background-color: #fff;
}
#custom_html-2 h1 {
	width: 280px;
	margin: 0 auto 0.5em;
	text-align: center;
	border-radius: 0.5em;
}
.catch-fhrase {
	width: 44%;
	height: auto;
	position: relative;
	padding: 0vh 2vw;
	text-align: center;
	color: #444;
	margin: 10px auto;
}
.catch-fhrase {
    color: #5d627b;
    background: white;
    border: 2px solid #000;
}
.catch-fhrase p {
	margin-top: 10px;
	font-size: 16px;
	line-height: 28px;
}
.catch-title {
	font-size: 22px;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 12px;
}
.catch-title {
  position: relative;
  color: white;
  background: #50829B;
  line-height: 1.4;
  padding: 0.5em 0.5em 0.5em 0em;
}
.far.fa-check-square {
	left: -10px;
    position: relative;
}

@media only screen and (max-width: 768px) {
	.catch-top-title {
		width: 100%;
	}
	.catch-top-title img {
		width: 300px;
	}
	.catch-top-title,
	.catch-top-subtitle {
		margin: 0 auto;
	}
	.catch-fhrase {
		width: 100%;
		margin-bottom: 0.5em;
	}
}


/* コンテンツ02（強み） */
#custom_html-3 {
	margin-bottom: 10px;
/*	background: url(https://tems-tech.com/wp/wp-content/uploads/top-3-background.png);
	background-size: contain; */
	border: 1px solid #999;
	padding: 1em 0 1.8em 0.5em;
}
.strength-title {
	margin: 30px auto 0;
    position: relative;
	text-align: center;
}
.strength-title h1 {
	position: relative;
	color: #50829B;
	font-size: 28px;
	padding: 10px 0;
	text-align: center;
	margin: 1.5em 0 0.5em;
}
.strength-title h1:before {
	content: "";
	position: absolute;
	top: -12px;
	left: 50%;
	width: 150px;
	height: 74px;
	border-radius: 50%;
	border: 5px solid #a6ddb0;
	border-left-color: transparent;
	border-right-color: transparent;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.strength-top {
	display: flex;
}
.strength-link {
	padding: 0.5em 1em;
	position: relative;
	top: 65px;
	right: 80px;
	text-align: center;
	color: #fff;
	font-size: 22px;
}
.strength-link {
	background: url(https://tems-tech.com/wp/wp-content/uploads/aboutmore.png) no-repeat;
	background-size: contain;
}
.strength01,
.strength02,
.strength03 {
	padding: 0.5em;
	border-radius: 0.5em;
	text-align: center;
	background: #fff;
}
.strength01 h4,
.strength02 h4,
.strength03 h4 {
	font-weight: bold;
	font-size: 22px;
	margin: 0 auto;
	padding-bottom: 10px;
	background: linear-gradient(transparent 90%, #F4A460 70%);
} 
.strength01 h4:first-letter,
.strength02 h4:first-letter,
.strength03 h4:first-letter {
	font-size: 28px;
	color: #F4A460;
}
.strangth-footer {
	font-weight: bold;
	padding: 20px;
	font-size: 20px;
	background-color: #F4A460;
	color: #fff;
	margin-top: 0;
	margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
	.strength-title {
		margin: 50px auto 1em;
	    position: relative;
	}
	.strength-link {
		padding: 0.5em 1em;
		position: relative;
		top: 80px;
		right: 10px;
	}
	.strength01,
	.strength02,
	.strength03 {
		margin-bottom: 0.5em;
	}
}


@media only screen and (min-width: 768px) {
	.strength-detail {
		display: inline-flex;
		top: -20px;
		width: 100%;
	}
	.strength01,
	.strength02,
	.strength03 {
		width: 33%;
	}
}
.strength01,
.strength02,
.strength03 {
	margin-right: 0.5em;
}
.strength01 p,
.strength02 p,
.strength03 p {
	font-size: 18px;
	padding: 20px 0;
	margin: 0;
    border: 2px solid #F4A460;
}


/* メインコンテンツ */
.main-contents {
	width: 100%;
	background-size: 80% 10px;
}
.slider-part {
	padding-top: 30px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 15px;
	border-bottom: 3px solid #50829B;
	border-radius: 50%;
}
img.slider-img {
	width: 100%;
	height: 250px;
}
div.contents-slider {
	width: 100%;
}
div.contents-slider td {
	padding-top: 20px;
}
img.anarrow {
	width: 100%;
}

div.works-line,
.news-line {
	height: 18px;
	border-bottom: 2px solid #F90;
}
p.works-slider,
.news-line p {
	width: 100%;
	color:#F90;
	font-size:18px;
}
img.works-img {
	width: 100%;
}
div.portfolio-line {
	height: 18px;
	border-bottom: 2px solid #F90;
}
p.portfolio-slider {
	width: 100%;
	color:#F90;
	font-size:18px;
}
img.portfolio-img {
	width: 100%;
}
div.contents-banner {
	width: 100%;
	float: left;
	margin-top: 28px;
}
.customer {
	color: #F90;
    font-size: 18px;
    height: 18px;
    border-bottom: 2px solid #F90;
    line-height: 20px;
    margin-bottom: 10px;
}
div.banner {
	width: 70%;
	text-align: left;
	margin-top: 10px;
	margin-left: 10px;
	float: left;
}
.banner a {
	font-size: 14px;
}
.top-newslist {
	width: 100%;
	margin-top: 20px;
	text-align: left;
}
div.topnews_back {
	background: url(../images/topnews.back.png) no-repeat;
	width: 100%;
	height: 40px;
}
div.topnews_back_footer {
	background: url(../images/topnews.back.footer.png);
	width: 100%;
	height: 14px;
}
.news-left {
}
.news-right {
	text-align: right;
}
.news-table {
    text-align: left; 
	vertical-align: middle; 
	width: 100%; 
}


/* フッター */
table.footer-table {
	width: 100%;
	height: auto;
	background: url(../images/border-black.png) repeat;
	margin-top: 5px;
}
table.sitemap{
	width: 100%;
	color: #FFF;
	font-size: 13px;
	padding: 10px;
}
table.sitemap a{
	color:#FFF;
	text-decoration: none;
}
table.sitemap a:hover{
	color:#FFF;
}
div.sitemap_left{
	width: 100%;
}
div.sitemap-center{
	width: 100%;
}
div.sitemap_right{
	width: 100%;
}
td.sitemap-about{
	width: 100%;
}
.sitelinks {
	width: 100%;
}
.sitelinks table {
	width: 100%;
}
.authinfo {
	width: 100%;
}
.sitelinks p {
	line-height: 180%;
}
.authinfo p {
	line-height: 120%;
}

p {
	line-height : 22px;
	font-size: 14px;
}
p.header{
	font-size: 13px;
}
p.job{
	font-size: 13px;
}
p.name {
	line-height: 15px;
}
p.profile{
	font-size: 14px;
}
p.news{
	font-size: 14px;
	line-height: 16px;
}
p.system{
	line-height : 0px;
	font-size: 14px;
}
p.offer {
	font-size: 17px;
	font-weight: bold;
}
div .price-box {
	font-size: 14px;
}
div.campaign {
	font-size: 14px;
	padding: 5px 0px 5px 10px;
	color: #fff;
	border-radius: 1em;
	background-color: #FF9900;
}
p.campaign-title {
	font-size: 17px;
	font-weight: bold;
}
div #system_detail{
	font-size: 14px;
	padding-left: 10px;
}
div #design_detail{
	font-size: 14px;
	padding-left: 10px;
}
div #works_detail{
	font-size: 14px;
	width: 100%;
}
#works_detail p{
	line-height: 160%;
}

td.works_image {
	width: 30%;
	height: 230px;
	vertical-align: top;
	padding-top: 20px;
}
td.works_info {
	height: auto;
	vertical-align: top;
}
td.news{
	padding: 10px;
	overflow-y: hidden;	
}
table.newslist {
	width: 100%;
	text-align: left;
}
div.newslist {
	width: 94%;
	padding: 10px;
	background-color:#FFC;
	border-radius: 20px;
	box-shadow: 5px 5px 5px #ccc;
	margin-bottom: 10px;
}
img.news {
	width: 100%;
	text-align: right;
}
.price-plans {
	padding: 10px 20px;
	box-shadow: 0px 0px 7px #AAA;
}
td.price_left{
	padding: 5px 10px;
	border-bottom: 1px solid #FC6;
	border-right: 1px solid #FC6;
	background-color: #FFC;
}
td.price_right{
	padding: 0 10px;
	border-bottom: 1px solid #FC6;
}
td.price_bikou{
	padding: 0 10px;
}
table.price {
	font-size: 14px;
	line-height: 24px;
	border: 1px solid #FC6;
}
.pop-strong {
	background-color: red;
  color: #FFF;
  padding: 0 10px;
  text-decoration: none;
  border-radius: 5px;
}
td.system_detail{
	padding-left: 0px;
	padding-right: 8px;
}
td.design_detail{
	padding-left: 0px;
}
td.works_detail{
	padding-left: 0px;
}
.system-flow-img {
	width: 25%;
	padding-bottom: 20px;
}
.about-table-top {
	width: 100%;
	text-align: center;
	background: url(../images/about.back.png); 
	background-position: right; 
	background-repeat: no-repeat;
}
.about-table {
	width: 100%;
}
.about-text {
	padding-left: 2%;
	padding-right: 2%;
}
.about-photo-img-eriko {
	width: 100%;
	float: left;
	background-image: url('images/eriko.JPG');
}
.about-name-img-eriko {
	width: 100%;
	float: right;
    background: url(../images/name-eriko.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.about-photo-img-masashi {
	width: 100%;
	float: right;
	background-image: url('images/masashi.JPG');
}
.about-name-img-masashi {
	width: 100%;
	float: left;
	background: url(../images/name-masashi.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.about-padding-masashi {
    padding-left: 45px;
	padding-top: 20px;
}

.about-services ul {
	padding-left: 0;
}
.about-services ul li {
	flex-basis: 29%;
	list-style: none;
	margin: 1rem 1%;
	padding: 0 3%;
	border: 1px solid #50829B;
}
.about-services ul li h3 {
	border-bottom: 1px solid #50829B;
}

#header h2 {
	color: #50829B;
	margin-top: 0;
	background-color: #FFF;
}
.heading {
	position: relative;
	padding-top: 40px;
	font-size: 28px;
	border-bottom: 1px solid rgba(5,62,98,1);
}
.heading span {
	position: relative;
	z-index: 2;
}
.heading::before {
	content: attr(data-en);
	position: absolute;
	top: 10px;
	left: 0;
	color: rgba(5,62,98,0.2);
	font-size: 40px;
	text-transform: uppercase;
	z-index: 1;
}

.heading06 {
	position: relative;
	padding-top: 15px;
	font-size: 26px;
}

.heading06 span {
	position: relative;
	z-index: 2;
}

.heading06::before {
	content: attr(data-en);
	position: absolute;
	top: -20px;
	left: 0;
	color: rgba(224,66,114,0.2);
	font-size: 45px;
	font-style: italic;
}

#header h1 {
	color: #50829B;
}
h3.price_title{
	height: 30px;
}
h3.price_title {
	position: relative;
	padding: 5px 10px 5px 10px;
	background: #fff0d9;
	font-size: 18px;
	color: #2d2d2d;
	line-height: 1.7;
	border-bottom: solid 3px orange;
	z-index:2;
	text-align: center;
}
.price-td strong {
	font-size: 18px;
	font-weight: bold;
	color: #FF0000;
}
.price-td h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 5px 0;
}

a.news{
	text-decoration: none;
}
a.news:hover{
	text-decoration: underline;
}
font.news_date {
	color: #C00;
	padding-right: 10px;
}
.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	justify-content: center;
    background: rgba(255,255,255,.7);
}
.cover {
/*    display: inline-block; */
	display: none;
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    width: 150px;
    height: 200px;
    border: 0px solid white;
    background-size: cover;
}
.cover1 {
    display: inline-block;
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    width: 230px;
    height: 185px;
    border: 0px solid white;
    -moz-background-size:cover;
    background-size: cover;
}
.cover2 {
    display: inline-block;
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    width: 460px;
    height: 540px;
    border: 0px solid white;
    -moz-background-size:cover;
    background-size: cover;
}
/* page-top */
#page-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	font-size: 77%;
}
#page-top a {
	background: #50829B;
	text-decoration: none;
	color: #fff;
	width: 100px;
	padding: 20px 0;
	text-align: center;
	display: block;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#page-top a:hover {
	text-decoration: none;
	background: #50829B;
}
form#mailformpro dl dd ul li, form#mailformpro dl dd ol li {
	padding: 5px 0 !important;
}
form#mailformpro dl dt,
form#mailformpro dl dd {
	font-size: 14px !important;
}
.mailform a {
    background-color: #F4A460;
    color: #fff;
    text-decoration: none;
    padding-top: 8px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 7px;
    border-radius: 6px;
    font-size: 16px;
}
 
.mailform a:hover {
    background-color: #50829B;
    color: #fff;
    text-decoration: none;
    padding-top: 7px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
	border-radius: 10px;
}
div.mfp_buttons button {
	margin-left: 20px;
}
.news-link a,
.newslink a {
    display: inline-block;
	border: 1px #50829B solid;
    background-color: #50829B;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding-top: 5px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-radius: 5px;
}
.news-link a:hover,
.newslink a:hover {
    display: inline-block;
    border: 1px #F4A460 solid;
	background-color:#FFF;
    text-align: center;
    color: #333;
    text-decoration: none;
    padding-top: 5px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-radius: 5px;
}
 
.newslist p {
	line-height: 15px;
	font-size: 14px;
}
.toptext {
	text-align: left;
	line-height: 18px;
	padding-left: 20px;
	font-size: 14px;
}
.worksinfo {
	margin-top: 10px;
	line-height: 24px;
}

/* 画像に影をつける */
.shadow {
    margin-top: 5px; /* 画像の上の余白*/
    display: inline-block; 
    box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.8); /*横方向　下方向　ぼかし　広がり　色 */
}


a.hover_img2 img{
	transition:all 0.5s ease;
}
a:hover.hover_img2 img{
	opacity: 0.5;
	filter: alpha(opacity=50);
}

form#mailformpro dl dd {
	width: 85%!important;
}