﻿@charset "UTF-8";

/*---------------------------------------

[reset]

[base]
	font
	anchor
	add class

[home set-up]
	h
	pagetop link

[lower]

[each page]

[contents]
	container
	header
	main contents
	footer
	print

[clearfix]

[cms setting]

---------------------------------------*/

/* CSS Document */
/*===============================================
●style.css
===============================================*/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
	width /***/: auto;
}

.container {
	width: 100%;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: reset */
body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote {
	margin: 0;
	padding: 0;
}
ul {
	margin: 0;
	padding: 0;
}
header,nav,section,aside,footer {
	display: block;
}

table {
	border-spacing: 0;
}

fieldset,img,a img,abbr,acronym {
	border: 0;
}

li img,dt img {
	vertical-align: top;
}

address,caption,cite,code,dfn,th,var {
	font-style: normal;
	font-weight: normal;
}

caption,th {
	text-align: left;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}

q:before,q:after {
	content: '';
}

a {
	outline: none;
}

button, fieldset, form, input, label, legend, select, textarea {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}







/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: base */

:root {
  --main-color: #9e7133;
  --main-color01: #f2ebe6; /* とっても薄め */
  --main-color02: #f0dac2; /* 薄め */
  --main-color03: #815519; /* 濃いめ */
  --sub-color01: #f5f4f3;
  
  --base-font:游ゴシック, YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, "PT Sans", "Lucida Grande", sans-serif;
  --sub-font: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; 
  
}
/*
var(--main-color);
*/


/*--------------------------------------- font */
html {
	font-size: 62.5%;
/* 1em=10px化 */
	;
}

body {
  font-family: var(--base-font);
	line-height: 1.5;
	color: #1d2129;
	-webkit-text-size-adjust: 100%;
	font-size: 1.4em;
/* 基準フォントサイズ1.4em=14px */
}
.subFont {
  font-family: var(--sub-font);
}

/*----------------------- color */
/* red */
.red{
	color: #FF0000;
}

/* white */
.white {
	color: #FFFFFF;
}

/* aqua */
.aqua {
	color: #000000;
}

/* blue */
.blue {
	color: #334f99;
}

/* gray */
gray {
	color:#7f7979;
}
/* black */
.black {
	color: #0b0b0b;
}

.bg_white {
	background-color: #fff;
}
/*----------------------- size */
/* size10px */
.body_common #newsListStyle02 li .date,
.list_thumbnail li .date,
.size10 {
	font-size: 0.71em;
}

/* size12px */
#input-table table th .input_required,
nav span,
footer {
	font-size: 0.85em;
}

/* size14px */
#header_logo,
.size14 {
	font-size: 1.0em;
}

/* size16px */
section {
	font-size: 1.14em;
}

/* size18px */
#serviceList li span.title,
.size18 {
	font-size: 1.28em;
}

/* size22px */
.pure-drawer .tel,
h3 {
	font-size: 1.57em;
}

/* size24px */
h2 {
	font-size: 2.01em;
}


/*--------------------------------------- anchor */

a {
	color: #1F6E42;
}

a:hover {
	color: #666666;
}

header a {
	color: #333;
	text-decoration: none;
}


/* white */
footer article a {
	color:var(--footer-txtcolor);
}
footer article a:hover {
	text-decoration:underline;
	color:#FFF;
}

/* btn */
.btn {
	text-align: center;
}

.btn a {
	padding: 0.7em 20px;
	color: #000;
	text-decoration: none;
	font-size: 1.2em;
	display: inline-block;
	min-width: 45%;
	transition: linear 0.2s;
	border:solid 1px #000;
}

.btn a:hover {
	background-color: var(--main-color);
	color: var(--footer-txtcolor);
  border:solid 1px var(--main-color);
}


/* btn02 */
.btn02 {
	text-align: center;
}

.btn02 a {
	border-radius: 100px;
	padding: 0.7em 20px;
	background-color: #333131;
	color: #FFF;
	text-decoration: none;
	font-size: 1.2em;
	display: inline-block;
	min-width: 45%;
	transition: linear 0.2s;
}

.btn02 a:hover {
	background-color: #999;
	color: #000;
}

@media screen and (max-width: 768px) {
	.btn02 { 
		padding: 20px 10px;
	}
	.btn02 a {
		display: block;
	}
}

/* btn03 */
.btn03 {
	text-align: center;
}

.btn03 a {
	padding: 0.7em 20px;
	color: #000;
	text-decoration: none;
	font-size: 1.2em;
	display: inline-block;
	min-width: 45%;
	transition: linear 0.2s;
	border:solid 1px #000;
}

.btn03 a:hover {
	background-color: var(--main-color);
	color: var(--footer-txtcolor);
  border:solid 1px var(--main-color);
}


/*--------------------------------------- add class */

.floatL {
	float: left;
}

.floatR {
	float: right;
}

.clearB {
	clear: both;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.bold {
	font-weight: bold;
}

br.forTab {
	display: none;
}

br.forSp {
	display: none;
}

.mb1em {
	margin-bottom: 1em;
}

.hidden {
	display:none;
}

.bgWhite {
  background-color:#FFF;
}

.bgBlack {
  background-color:#000;
}

.bgGray {
  background-color:#f2f2f2;
}

.bgLightgray {
  background-color:#f9f8f8;
}

.bgBeige {
  background-color:#f3f1ed;
}

.bgLightpink {
  background-color:#f5edef;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: set-up */
.body_common h2 {
	font-family: var(--sub-font);
	line-height: 1.2;
	padding: 0.3em 10px;
	clear: both;
	max-width: 978px;
	margin: 10px auto 35px;
	color: #333131;
	text-align: center;
}
.lower h1,
.lower h2{
	position: relative;
	padding: 1em 0 30px;
	margin-bottom:50px;
	text-align:center;
  font-family: var(--sub-font);
}
.lower h1:after,
.lower h2:after{
	content: "\A";
	width: 15px;
	height: 15px;
	background-color: var(--main-color);
	position: absolute;
	left: 49%;
	bottom: -20px;
	transform: translateY(-50%) rotate(45deg);
}

/* h:変更した場合はstyle_editor.cssにも反映すること */
.body_common h3 {
	clear: both;
	padding: 1em 0 0.2em;
	margin-bottom: 1.8em;
	color: #333131;
	position: relative;
	text-align:center;
}


.lower h3 {
	border-bottom:dotted 1px #ccc;
	padding-bottom:20px;
	margin-bottom:20px;
	color:var(--main-color);
}


.lower h4 {
	clear: both;
	margin: 0 0 15px;
	padding: 5px 12px 5px 12px;
	background-color:var(--main-color-light);
	color:#6d6d6d;
}

.lower h5{
	display: inline-block;
	position: relative;
	padding-bottom: 10px;
	border-bottom: 2px solid #6d6d6d;
    color: #6d6d6d;
	font-size: 1.3em;
    margin: 0 0 20px;
}
 
.lower h5:after{
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid #6d6d6d;
	border-right: 2px solid #6d6d6d;
	background-color: #fff;
	transform: rotate(135deg) translateY(50%);
	position: absolute;
	bottom: -12px;
	left: 50%;
}

.lower h6 {
	clear: both;
	margin: 0 0 20px;
	color: var(--main-color);
	line-height:1.5;
}

@media screen and (min-width: 780px) {
	.lower h1,
	.body_common h2 {
		font-size: 2.3em;
	}
	h3 {
		font-size: 1.6em;
	}
	h4 {
		font-size: 1.4em;
	}
	h5,
	h6  {
		font-size: 1.1em;
	}
}
@media screen and (max-width: 779px) {
	.lower h1,
	.body_common h2 {
		font-size: 1.3em;
	}
	h3 {
		font-size: 1.2em;
	}
	h4 {
		font-size: 1.1em;
	}
	h5,
	h6 {
		font-size: 1em;
	}

}
/* table */
.tableStyle01,
#input-table table {
	border-collapse: collapse;
	font-size: 0.95em;
}

table.tableStyle01 th,
table.tableStyle01 td,
#input-table table th,
#input-table table td {
	padding: 0.5em 1em;
	border: 1px solid #dddddd;
}
table.tableStyle01 th,
#input-table table th {
	color: #666;
	font-weight: bold;
	background: #f4f4f4;
}
table.tableStyle01[border="0"],
table.tableStyle01[border="0"] th,
table.tableStyle01[border="0"] td,
#input-table table[border="0"],
#input-table table[border="0"] th,
#input-table table[border="0"] td {
	border: none;
}

#input-table table {
	width:100%;
}

/* flexbox */
.flexbox {
	display:-webkit-box;
	display:flex;
	-webkit-box-pack:center;
	justify-content:center;
}
.flexbox li {
	-webkit-box-flex:1;
	flex-grow:1;
	list-style:none;
	text-align:center;
}

/* ------------------------ list_thumbnail */
.list_thumbnail {
  text-align: center;
}
.lower .list_thumbnail {
  text-align: left;
}
.list_thumbnail li {
  list-style: none;
}
.list_thumbnailC3 li {
	display:inline-block;
	width:31%;
	margin-right:2%;
}
				@media screen and (max-width:478px) {
				.list_thumbnailC3 li {
					width:100%;
          margin-right:0;
				}
				}

.list_thumbnailC3 li:nth-child(3n) {
	margin-right:0;
}
				@media screen and (max-width:478px) {
				.list_thumbnailC3 li:nth-child(3n) {
					margin-right:0;
				}
        }

.list_thumbnailC4 li {
	float:left;
	width:23%;
	margin-right:2%;
}
.list_thumbnail li .date,
.list_thumbnail li .title {
  text-align: left;
}
.list_thumbnail li .thumbnail {
	display: block;
	width: 100%;
  height: 190px;
  position: relative;
  margin-bottom: 6px;
}
.lower .list_thumbnail li .thumbnail {
  height:200px;
}
.list_thumbnail .thumbnail {
	display: block;
	overflow: hidden;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	transition: linear 0.2s;
}

.list_thumbnail .thumbnail span {
    padding: 27% 0;
    display: block;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0 -1em 4em 1em rgb(0 0 0 / 5%);
    transition: all 0.5s ease-out;
}
.list_thumbnail li a:hover .thumbnail span{
	transform: scale(1.1);
	box-shadow: none;
}
.list_thumbnail li span.title {
  font-size:1.2em;
}
.list_thumbnail li span.text {
  color:#393939;
}

/* .list_thumbnail.style02 */
.list_thumbnail.style02 li .thumbnail span {
	width:100%;
	height:100%;
	display:block;
  background-size: 106% auto;
  background-position: center center;
}

.list_thumbnail.style02 li .new {
  position: absolute;
  top: 19px;
  left: 17px;
  width: 111px;
  height: 107px;
  overflow: hidden;
  }

.list_thumbnail.style02 li .new span {
  display: inline-block;
  position: absolute;
  padding: 5px 0;
  left: -47px;
  top: 24px;
  width: 163px;
  text-align: center;
  font-size: 14px;
  line-height: 13px;
  background: #ffa520;
  color: #fff;
  letter-spacing: 0.05em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
}


.list_thumbnail.style02 .new span:before,
.list_thumbnail.style02 .new span:after {
  position: absolute;
  content: "";
  border-top: 4px solid #b2751b;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  bottom: -4px;
}

.list_thumbnail.style02 li .new span:before {
  right: 14px;
}

.list_thumbnail.style02 li .new span:after {
  left: 18px;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: main */
article,
.con {
	margin-bottom: 30px;
}

.con {
	padding-bottom: 30px;
	border-bottom: dotted 1px #CCCCCC;
}

.entry {
	padding-bottom: 50px;
}

.entry li {
	margin-left: 2em;
}


/*--------------------------------------- kayFrame */

/*--------------------------------------- mainContaints */
.container {
	padding: 30px 0 80px;
}

.bgf8f6f3 {
	background-color: #f8f6f3;
}

.container article {
	padding: 0 4%;
}

.layout02 article {
	width: 76%;
	float: left;
}


/* -------------- fadein */
.fadein {
	opacity : 0.1;
	transform : translate(0, 50px);
    transition : all 1200ms;
}

.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.body_common #serviceList li.fadein:nth-of-type(2) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}
.body_common #serviceList li.fadein:nth-of-type(3) {
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
	}
.body_common #serviceList li.fadein:nth-of-type(4) {
	-moz-transition-delay:600ms;
	-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;
	-ms-transition-delay:600ms;
	}
	

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: contents */

/*--------------------------------------- container */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
}


.container {
	min-height:600px;
}

.msg {
	line-height:1.8;
}

.layout02,
.breadCrumb ul,
.copy div,
article {
	max-width: 1340px;
	width: 100%;
	margin: 0 auto;
}

/*--------------------------------------- header */
header,
#topNavi {
	width: 100%;
	z-index: 9999;
	padding:0 30px;
	top: 0;
	left: 0;
	display:block;
	z-index:100;
  position:absolute;
  background-color:#FFFFFF;
}
.lower #topNavi {
  position:relative;
}
header {
	position: fixed;
}
				@media screen and (max-width:779px) {
				#topNavi {
					position:fixed;
				}
				header,
				#topNavi ul{
					display:none;
				}
				}


/* logo setting */
.body_common header h1,
.lower #header_logo,
nav#topNavi p {
	width:40%;
	float:left;
	padding:25px 0 24px;
}

				@media screen and (max-width:779px) {
				nav#topNavi p {
					text-align:center;
					width: 100%;
					float: none;
				}
				}
				@media screen and (max-width:478px) {
				nav#topNavi p {
					display:none;
				}
				}

.body_common header h1 img,
.lower #header_logo img,
nav#topNavi p img {
	width: auto;
	max-height: 75px;
}

				
/* navigation */
nav#topNavi ul {
	float:right;
	width:60%;
  font-size: 1.2em;
}

nav span {
	display:block;
}
nav ul {
	display:-webkit-box;
	display:flex;
	-webkit-box-pack:flex-end;
	justify-content:flex-end;
}

nav li {
	text-align:center;
	margin:0;
}

nav li a {
	padding:33px 20px 30px;
	display:block;
  color:#000;
}
.lower nav li a {
  color:#000;
}
.fixed nav li a {
  color:#000;
}
.fixed{
  background-color:rgb(120,213,120,0.6);
}				

/* ---------------------------------------- 

            sp navigation

------------------------------------------ */
.pure-drawer {
  display:none;
}
				@media screen and (max-width:779px) {
				.pure-drawer {
					display:block;
				}
				}

.pure-drawer .spnavi_logo {
	margin:20px 0 0 20px;
	text-align:center;
}
.pure-drawer .spnavi_logo img {
	width:auto;
	max-width:50%;
	max-height:80px;
}
.pure-drawer li {
	text-align:left;
}

.pure-drawer li span {
	display:inline;
}
.nav-primary li img {
	width:10%;
	margin-top:4px;
}
.nav-primary li.herf {
	width:50%;
	float:left;
	text-align:center;
	background:#04345f;
	border-right:solid 1px #f5f6ee;
}
.nav-primary li.herf:nth-child(odd) {
	float:right;
	border-right:none;
}
.nav-primary li.herf a {
	color:#FFF;
}

.pure-drawer .tel a{
	padding:20px 0;
	text-align:center;
	display:block;
	text-decoration:none;
	background-color:#383838;
	color:#FFF;
	
}

.pure-drawer .tel a i {
	margin-right:10px;
}

/*--------------------------------------- container */

.container ul {
  margin: 0 2em 0 2em;
}




/*--------------------------------------- pagetop link */
#page_top a{
	width: 30px;
	height: 30px;
	border: 5px solid;
	border-color: var(--main-color) var(--main-color) transparent transparent;
	transform: rotate(-45deg);
	display:block;
	text-indent:-9999;
	position:fixed;
	bottom:30px;
	right:30px;
}


/*--------------------------------------- pageprev/next link */
.page_link {
	clear: both;
	width: 100%;
	margin: 0;
	padding: 20px 0;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.page_link { 
		padding: 20px 10px;
	}
}
/*--------------------------------------- footer */
footer {
	background-color:var(--main-color);
	margin-top:30px;
}
.snsList {
	background-color:#FFF;
	display:-webkit-box;
	display:flex;
	-webkit-box-pack:center;
	justify-content:center;
}

.snsList li {
	padding:0 10px 50px;
	list-style:none;
	text-align:center;
	width:80px;
}
.snsList li img {
	width:100%;
}

footer article {
	padding:40px 20px 80px ;
}

				@media screen and (max-width:779px) {
				footer article{
					padding:60px 20px ;
				}
				}


footer article ul {
	float:left;
	width:60%;
	margin-top:0.5em;
}
footer article li {
  list-style:none;
}

footer .copy {
	float:right;
	width:40%;
	text-align: right;
  color: var(--footer-txtcolor);
}
				@media screen and (max-width:478px) {
				footer .copy,
        footer article ul {
					width: 100%;
          text-align: left;
				}
        footer .copy {
          margin-top:8px;
        }
        }


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: lower */
/* breadCrumb */
.breadCrumb {
	font-size: 0;
	background-color: #FFFFFF;
}
				@media screen and (max-width:498px) {
				.breadCrumb {
          display:none;
				}
        }

.breadCrumb ul {
	padding: 0.7em 20px;
	width:100%;
	max-width:1200px;
	margin:0 auto;
}
.breadCrumb li {
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
}
/*.breadCrumb li::before,
.breadCrumb li::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.breadCrumb li::before{
    left: 3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.breadCrumb li a {
	color: #999999;
	text-decoration: none;
}

.breadCrumb li:first-child {
	padding:0;
}
.breadCrumb li:first-child::before {
	border-top:none;
	border-right: none;
}
.breadCrumb li:last-child {
	background-image: none;
	padding-right: 0;
}*/

/* side */
nav#side {
    padding-bottom: 50px;
}
nav#side ul {
-webkit-box-pack: center;
    justify-content: center;
}

          
nav#side li {
  margin-right: 10px;
}

          
nav#side li:last-of-type {
  margin-right:0;
}
nav#side li a {
  border: solid 1px #CCC;
  border-radius: 3px;
  padding: 12px 30px;
}
nav#side li.current a {
  background-color:var(--main-color);
  color: var(--footer-txtcolor);
  border: solid 1px var(--main-color);
}
          
        @media screen and (max-width:498px) {
        nav#side ul,
				nav#side li {
					margin:0;
				}
        nav#side li a {
          border-radius:0;
        }
        }

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: main */


/*--------------------------------------- index.html */
.body_common section {
	padding:80px 0 110px;
}
				@media screen and (max-width:779px) {
				.body_common section {
					padding:50px 20px 80px;
				}
				}


/* con01 */
.body_common #con01 {
	padding:0;
	border-bottom:solid 1px #ccc;
  padding-bottom:0;
  margin-top: 90px;
}
.body_common #con01.thumnailnews_hidden {
  margin-top:0;
}

/* ----- slider */
#slider-proFrame {
	float:right;
	width:50%;
	position: relative;
	height:370px;
}
				@media screen and (max-width:779px) {
				#slider-proFrame{
					float:none;
					width:100%;
					height:350px;
				}
				}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--main-color);
}
.swiper-slide a {
	display:block;
	width:100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width:100%;
}

    .swiper-container {
      width: 100%;
      height: 100%;
    }
    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;

      /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }

.swiper-container .swiper-slide {
	position:relative;
	text-align:left;
}
.swiper-container .swiper-slide img.key {
	width:100%;
	height:100vh;
	left:0;
	bottom:0;
	position:absolute;
	object-fit: cover;
}
				@media screen and (max-width:479px) {
				.swiper-container .swiper-slide img.key {
					width:100%;
					height:auto;
					overflow:hidden;
					object-fit: cover;
				}
				}

.swiper-container .swiper-slide .slideBox {
  background-repeat: repeat;
  background-size: auto 100%;
  background-position: center center;
  display: block;
  height: 100%;
  width: 100%;
}
.thumnailnews_hidden .swiper-container .swiper-slide .slideBox {
  background-size: 110% auto;
}
                @media screen and (max-width:1024px) {
                .thumnailnews_hidden .swiper-container .swiper-slide .slideBox {
                    background-size: auto 100%;
                }
                }

.thumnailnews_hidden #slider-proFrame {
  height:640px;
}
.slide_height100 #slider-proFrame {
  height:100vh;
}
.slide_height100 .swiper-container .swiper-slide .slideBox {
  background-size: auto 110%;
}

.swiper-container .swiper-slide .slideBox:before {
  display:block;
  content:"";
  width:100%;
  height:100vh;
  background:0 0 repeat url(img/key_bg.png) rgb(0,0,0,0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

.swiper-container .swiper-slide .slideBox span.text {
	display: flex;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-justify-content: center;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  padding: 20px;
  color: #FFF;
  min-height: 5em;
  z-index: 10;
  text-align: center;
  font-size: 1.8em;
}
.swiper-container .swiper-slide .slideBox span.text span
{
  position: relative;
    /* top: 25%; */
    height: 100%;
    width: 100%;
    /* -webkit-transform: translateY(-25%); */
    /* transform: translateY(-25%); */
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
				@media screen and (max-width:498px) {
				.swiper-container .swiper-slide .slideBox span.text span {
					font-size:0.8em;
				}
				}

.swiper-container .swiper-slide span.spTitle {
	display:none;
}

.swiper-button-prev,
.swiper-button-next{
	display: inline-block;
	background:none;
}
.swiper-button-next {
	right:30px;
}
.swiper-button-prev::before,
.swiper-button-prev::after,
.swiper-button-next::before,
.swiper-button-next::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.swiper-button-prev::before,
.swiper-button-prev::after{
	left: 10px;
}

.swiper-button-next::before,
.swiper-button-next::after{
	right: 10px;
}

.swiper-button-prev::before{
	right: 10px;
	width: 30px;
	height: 30px;
	border-bottom: 2px solid #FFF;
	border-left: 2px solid #FFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.swiper-button-next::before{
	left: 10px;
	width: 30px;
	height: 30px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* .hidden_slide （スライド非表示の時） */
.slide_hidden #slider-proFrame {
	display:none;
}
.body_common .slide_hidden #newsListStyle02 {
	width:100%;
}
/* .thumnailnews_hidden （サムネイル記事非表示の時） */
.thumnailnews_hidden #newsListStyle02 {
	display:none;
}
.body_common .thumnailnews_hidden #slider-proFrame {
	width:100%;
}

/* .keynews_hidden（テキストニュース非表示） */
.body_common .keynews_hidden #keyNews {
	display:none;
}

/* .hidden_con01 （スライド、サムネイル記事どちらも非表示の時） */
.body_common .con01_hidden {
	display:none;
}

/* ----- newsListStyle01 */

.body_common #newsListStyle02 {
	float:left;
	width:50%;
  min-height: 570px;
	background-color:#F3F3F3;
}
				@media screen and (max-width:779px) {
				.body_common #newsListStyle02{
					float:none;
					width:100%;
				}
				}
				@media screen and (max-width:498px) {
				.body_common #newsListStyle02 {
            min-height: auto;
        }
				}

.body_common #newsListStyle02 a {
	display:block;
  height: 100%;
}
.body_common #newsListStyle02 a:hover {
	cursor:pointer;
}
.body_common #newsListStyle02 span {
	display:block;
}
.body_common #newsListStyle02 span.bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  background-color:rgb(255,255,255,0.9);
}
.body_common #newsListStyle02 li {
  position: relative;
	float:left;
	width:50%;
	list-style:none;
	display:none;
  background-repeat: repeat-y;
  background-position: center center;
  /*background-size:120% auto;*/
  background-size:cover;
  height: 50%;
}

.body_common #newsListStyle02 li:first-of-type,
.body_common #newsListStyle02 li:nth-of-type(2),
.body_common #newsListStyle02 li:nth-of-type(3),
.body_common #newsListStyle02 li:nth-of-type(4) {
	display:block;
}

.body_common #newsListStyle02 li:first-of-type,
.body_common #newsListStyle02 li:nth-of-type(3) {
	clear: both;
}

				@media screen and (max-width:498px) {
				.body_common #newsListStyle02 li, .body_common #newsListStyle02 li:nth-of-type(2), .body_common #newsListStyle02 li:nth-of-type(3), .body_common #newsListStyle02 li:nth-of-type(4) {
          display:none;
					min-height: 240px;
          width:100%;
				}
        .body_common #newsListStyle02 li:first-of-type {
            display:block;
        }
				}



.body_common #newsListStyle02 li .title {
	padding:8px 10px 0;
}

.body_common #newsListStyle02 li .date {
	text-align:left;
	color:#363636;
	padding:0 10px 10px;
}

.body_common #newsListStyle02 li .new {
	display:none;
}

/* pic */
.body_common #newsListStyle02 li .pic{
	position: relative;
}
.body_common #newsListStyle02 li img {
	width:100%;
}

/* more */
.body_common #newsListStyle02 li .ic_more{
	position: absolute;
	bottom: 0;
	right: 0;
	background:#333;
	color: #fff;
	padding: 5px 15px;
	width:25%;
	text-align:center;
}


/* new */
.swiper-container .swiper-slide .slideBox span.new:before,
.body_common #newsListStyle02 li .ic_new:before {
  border-color: #ca0303 transparent transparent transparent;
  border-style: solid;
  border-width: 60px 60px 0 0;
  content: "";
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom:auto;
  width: 0;
  z-index: 2;
}
.swiper-container .swiper-slide .slideBox span.new:after,
.body_common #newsListStyle02 li .ic_new:after {
  color: #fff;
  content: "NEW";
  font-size: 12px;
  position: absolute;
  top: 15px;
  left: 8px;
  transform: rotate(-45deg);
  z-index: 3;
}

/* ----- スライド上のテキストニュース */
#keyNews {
  display: inline-block;
  bottom: 0;
  position: absolute;
  width: auto;
  left: 0;
  padding: 20px;
  background: rgba(0,0,0,.45);
  color: #FFF;
  z-index: 11;
}

#keyNews li {
  list-style: none;
}
#keyNews li .date,
#keyNews li .new,
#keyNews li .text{
  display:inline-block;
  margin-right:10px;
}
#keyNews li .ttl {
  display:inline-block;
  margin-right:10px;
  background-color:var(--main-color);
  color:var(--footer-txtcolor);
  padding:2px 5px;
  font-size:0.8em;
}
#keyNews li .new{
	color: #FFA520;
	margin-top:0.2em;
	padding: 0.01em 0.5em;
	border: 1px solid;
	border-radius: 100em;
}
#keyNews li a {
  color:#FFF;
}

/* ----- con01 */


.body_common #con01 .btn {
	display:none;
}

/* con02 */
.body_common #con02 {
	position:relative;
}
.body_common #con02 .leftHalf{
	background-size: cover;
	width:50%;
	float:left;
	height:100%;
	position: relative;
}
				@media screen and (max-width:779px) {
				.body_common #con02 .leftHalf{
					float:none;
					width:100%;
				}
				}

.body_common #con02 .leftHalf::before{
	background-color: rgba(0,0,0,0.7);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
	z-index:9;
}
.body_common #con02 .leftHalf div {
	position: absolute;
	z-index:99;
	color:#FFF;
	text-align:center;
	width:100%;
	padding:120px 40px 40px;
}
				@media screen and (max-width:779px) {
				.body_common #con02 .leftHalf div{
					position:relative;
					padding:80px 40px 70px;
				}
				}

.body_common #con02 .leftHalf .logo {
	max-height:170px;
	width:100%;
	margin-bottom:30px;
}
	
.body_common #con02 .rightHalf {
	background-color:#f8f8f8;
	width:50%;
	float:right;
	padding:134px 40px 130px;
	text-align:center;
}
				@media screen and (max-width:779px) {
				.body_common #con02 .rightHalf{
					float:none;
					width:100%;
					padding:50px 10px 60px;
				}
				}

/* con03 */
#serviceList ul,
#serviceList ul.normal {
	display:-webkit-box;
	display:flex;
	-webkit-box-pack:center;
	justify-content:center;
}
				@media screen and (max-width:498px) {
				#serviceList ul,
        #serviceList ul.normal {
					display:block;
				}
				}
          
#serviceList li,
#serviceList ul.normal li {
	-webkit-box-flex:1;
	flex: 1 1 0;
	padding:0 20px 60px;
	list-style:none;
}


#serviceList ul.layout02,
#serviceList ul.layout03 {
	display:block;
}
#serviceList ul.layout02 li {
	width:50%;
	float:left;
}

#serviceList ul.layout03 li {
	width:33%;
	float:left;
}
	

#serviceList li img {
	width:80%;
	max-width:230px;
	margin:0 auto 20px;
	border-radius:50%;
	height:auto;
	object-fit: cover;
}

#serviceList li span {
	display:block;
}
#serviceList li span.pic,
#serviceList li span.ttl {
	text-align:center;
}
#serviceList li span.txt {
	margin-top:10px;
}


/* access */
#access #map {
	margin-bottom:30px;
}
#access #map iframe {
  width: 100%;
}

#access .companyInfo {
	margin-left:30px;
}

#access .companyInfo li {
	list-style:none;
}


/*--------------------------------------- item/index.html */
.body_item .list_thumbnail li {
	list-style:none;
	padding-bottom:50px;
}

.body_item .list_thumbnail li img {
	width:100%;
	margin-bottom:8px;
}

.body_item .list_thumbnail li .text {
	color:#000;
	font-size:0.9em;
}

.containerInner_item .imageMain {
	text-align:center;
	padding-bottom:40px;
}
.containerInner_item .imageMain img {
	width:100%;
	max-width:100%;
}
.containerInner_item .txt {
	padding-bottom:120px;
}

.containerInner_item .imageSideLayout .txt {
	float:left;
	width:60%;
}

.containerInner_item .imageSideLayout .imageSide {
	float:right;
	width:36%;
	text-align:center;
}
.containerInner_item .imageSideLayout .imageSide img {
	width:100%;
}

.containerInner_item .imageSideLayout .imageSide span {
	display:block;
	text-align:left;
	font-size:0.8em;
	padding-top:8px;
}

/*--------------------------------------- news/index.html */
#newsList li span {
	display:block;
}

#newsList li a {
	text-decoration: none;
	display: block;
	padding: 20px;
	transition: background-color 0.8s;
	-webkit-transition: background-color 0.8s;
  }
#newsList li a:hover {
	background-color:#eeeded;
	transition: background-color 0.5s;
}


#newsList li p {
	float:right;
	width:83%;
}
#newsList li .thumbnail img {
	width:100%;
}

#newsList li .date {
	color:#CCC;
}
#newsList li .title {
	padding: 0 0 10px;
}

#newsList li{
	position: relative;
	vertical-align: middle;
	text-decoration: none;
  margin-bottom: 20px;
}
        @media screen and (max-width:498px) {
				.body_common #newsList li {
					display:none;
				}
				.body_common #newsList li:first-of-type {
					display:block;
				}
        }
          
#newsList li .thumbnail::before,
#newsList li .thumbnail::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
#newsList li .thumbnail::before{
	box-sizing: border-box;
	width: 20px;
  height: 20px;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: var(--main-color);
  z-index:99;
}
#newsList li .thumbnail::after{
	right: 8px;
  width: 6px;
  height: 6px;
	border-top: 1px solid var(--footer-txtcolor);
	border-right: 1px solid var(--footer-txtcolor);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  z-index:99;
}


.containerInner_news .date {
	display:block;
	text-align:right;
	margin-bottom:20px;
	margin-top:-20px;
}
.containerInner_news .thumbnail {
	display:block;
	margin-bottom:40px;
	text-align:center;
}

.containerInner_news .msg {
	margin-bottom:50px;
}


/* --------------------------------------- contact/ */

.container ul.form_flow {
	display:-webkit-box;
	display:flex;
	-webkit-box-pack:space-around;
	justify-content:space-around;
	border-right: 1px solid #f4f4f4;
	border-bottom: 1px solid #f4f4f4;
	margin:50px auto 0;
}

.form_flow li {
	-webkit-box-flex:1;
	flex-grow:1;
}

.form_flow li,
	.form_flow li:first-child {
	display: block;
	width: 100%;
	text-align: left;
	border-left: 1px solid #f4f4f4;
	text-align:center;
}

.form_flow li {
	border-top: 1px solid #f4f4f4;
	padding:10px;
}

.form_flow li:first-child {
	border-top: none;
}

.form_flow li.current {
	background-color:#f4f4f4;
}


/* table */
#input-table table th .input_required {
	display:inline-block;
}
/* contact form */
.contact form {
	text-align: center;
}

#input-table {
	display: block;
	width: 100%;
	max-width: 100%;
}

#input-table table {
	width: 100%;
	padding: 5px;
	margin: 0 auto 20px;
	border: none;
	box-shadow: inset 0 0 0 2px #f0f0f0;
	background-color: #ffffff;
}

#input-table table li {
	margin-left: 0;
}

#input-table table th {
	width: 35%;
	padding: 20px 60px 20px 30px;
	color: #3f4242;
	background: rgba(0, 0, 0, 0);
	text-align: left;
	border: none;
	position: relative;
	vertical-align: top;
}

#input-table table td {
	padding-left: 10px;
}

#input-table table tr {
	transition: linear 0.2s;
	border-top: 1px solid #ccc;
}

#input-table table tr:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

#input-table table tr:first-child {
	border-top: 5px solid #f0f0f0;
}

#input-table table tr:last-child {
	border-top: 2px solid #f0f0f0;
}

.input_required,
.input_not_required:before {
	font-size: 0.9em;
	padding: 2px 6px;
	display: inline-block;
	background-color: #2b71b7;
	background-color: var(--main-color);
	color: #ffffff;
	position: absolute;
	right: 10px;
	top: 20px;
}

.input_not_required:before {
	content: "任意";
	background-color: #adadad;
	text-align: center;
}

#input-table table td {
	padding: 20px 30px;
	border: none;
	text-align: left;
}

#input-table table tr:last-child td {
	text-align: center;
}

#input-table div.formcomment {
	clear: both;
	margin-left: 7px;
	margin-top: 3px;
}

#input-table table td ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

input[type="text"],
input[type="password"] {
	border: 0;
	padding: 4px;
	border: solid 1px #ccc;
	max-width: 100% !important;
	resize: none;
	border-radius: 5px;
}

.body_textbook_form input[type="text"] {
	margin-bottom: 10px;
}

#input-table table .form_input_addnumber {
	width: 40% !important;
}

#input-table table textarea {
	padding: 10px;
	width: 96% !important;
	border: solid 1px #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

input:focus,
input:textarea {
	border: solid 1px #3ba5eb;
}

.input_button {
	font-size: 0.9em;
	font-weight: bold;
	-webkit-appearance: none;
	padding: 4px 10px;
	background-color: #2b71b7;
	color: #ffffff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#input-table .input_button {
	padding: 10px 50px;
}

#input-table .submit_button {
	text-align: center;
	padding-top: 20px;
}

#input-table .privacy {
	font-size: 0.9em;
	height: 200px;
	overflow: auto;
	border: 1px solid #ddd;
	padding: 10px;
	background: #ffffff;
	border-radius: 3px;
}

/* セパレーター */
#input-table table tr.input-formgroup-blank th{
	background:#F0F0F0;
	border:none;
}
#input-table table tr.input-formgroup{
	padding-top:20px;
}
#input-table table tr.input-formgroup th{
	text-align:left;
	border:none;
	padding:10px 0 5px 50px;
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	background-color:#074D93;/* セパレーターth背景色 */
	background-color:var(--main-color);/* セパレーターth背景色 */
	border-top:2px solid #EEEEEE;
	border-left:2px solid #EEEEEE;
	border-right:2px solid #EEEEEE;
	border-bottom:1px solid #EEEEEE;
	border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
}
#input-table table tr.input-formgroup th.formgroup-closed{
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	border-bottom:2px solid #EEEEEE;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#input-table table tr.input-formgroup th:hover{
	cursor:pointer;
	filter: alpha(opacity=90);
	opacity:0.90;
	-moz-opacity:0.90;
	-ms-filter: "alpha(opacity=90)";
}
#input-table table tr.input-formgroup span.input-formgroup-title{
	display:block;
	color:#FFFFFF;/* セパレータータイトル文字色 */
	font-size:1.3em;/* セパレータータイトル文字サイズ */
	padding-bottom:5px;
}
#input-table table tr.input-formgroup span.input-formgroup-text{
	position: relative;
	display:block;
	color:#FFFFFF;/* セパレーター説明文文字色 */
	padding:0 5px 0 1em;
	margin:5px 10px 10px 10px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
#input-table table tr.input-formgroup span.input-formgroup-text:before{
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 0.5em;
	height: 0.5em;
	background: #FFFFFF;
	content:"";
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:visited,
#input-table table tr.input-formgroup span.input-formgroup-text a:link{
	color:#FFFFFF;/* セパレーター説明文内リンク色1 */
	text-decoration:underline;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:hover,
#input-table table tr.input-formgroup span.input-formgroup-text a:active{
	color:#66FFFF;/* セパレーター説明文内リンク色2 */
	text-decoration:underline;
}
@media screen and (max-width:779px) {
	#input-table table {
		width: 100%;
		border-collapse: collapse;
		border-bottom: 1px solid #CCCCCC;
	}

	#input-table table th ,
		#input-table table td {
		width: 100%;
		display: block;
		border-top: none;
		text-align: left;
	}

	#input-table table th {
		padding: 6px 45px 6px 12px;
		background: #eeeeee none repeat scroll 0 0;
		font-weight: normal;
	}
	#input-table table td {
		padding-bottom: 20px;
	}
	#input-table table td:after {
		content:"";
		display:block;
		clear:both;
	}
	input[type="text"], input[type="password"] {
		width: 100%!important;
	}
	#input-table table textarea {
		width: 96%;
		max-height: 24vw;
		font-size: 110%;
	}
	.input_required,
	.input_not_required:before {
		position: absolute;
		right: 10px;
		font-size: 0.8em;
		top: 6px;
	}
}

#input-table .input_button {
	display:inline-block;
	border-radius: 4%;
	text-align: center;
	cursor: pointer;
	padding: 22px 44px;
	background: #98AD87;
	color: #ffffff;
	line-height: 1em;
	transition: .3s;
	border: 2px solid #bfbfbb;
	margin-bottom:20px;
}
#input-table .input_button:hover {
	color: #bfbfbb;
	background: #ffffff;
}
/*.input-table-title div {
	display:inline-flex;
}*/


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: clear */
/* *:after {
	content: "";
	display: block;
	clear: both;
}*/



/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: cms setting */

/* フォームツールチップ */
.invisible {
	display: none;
}

a.tooltiplink {
	display: inline-block;
	margin: 1px 3px 0;
	padding: 1px 3px 0;
	border: 2px solid #C7C7C7;
	background-color: #075698;
	border-radius: 5px;
	-moz-border-radius: 5px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 1.0em;
	font-weight: bold;
}

#input-table a.tooltiplink:link,
#input-table a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

#input-table a.tooltiplink:hover,
#input-table a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}

a.tooltiplink:link,
a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

a.tooltiplink:hover,
a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}

p.tooltipbox {
	position: absolute;
	top: 100px;
	left: 20px;
	font-size: 1.0em;
	margin: 0;
	padding: 10px;
	min-width: 100px;
	min-height: 30px;
	color: #FFFFFF;
	background: #075698;
	border: 2px solid #075698;
	border-radius: 5px;
	-moz-border-radius: 5px;
}

#input-table p.tooltipbox a:link,
#input-table p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}

#input-table p.tooltipbox a:hover,
#input-table p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}

p.tooltipbox a:link,
p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}

p.tooltipbox a:hover,
p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}

/* comment form */
.comment_box {
	width: 100%;
	margin: 0 0 15px;
	padding: 0;
	border-collapse: collapse;
	border: solid 1px #cccccc;
	background: #eeeeee;
}

.comment_box th,
.comment_box td {
	padding: 10px;
}

.comment_id {
	width: 10%;
	text-align: left;
	white-space: nowrap;
}

.comment_name {
	width: 70%;
	text-align: left;
}

.comment_regist {
	width: 20%;
	text-align: right;
	vertical-align: bottom;
	white-space: nowrap;
	font-size: 0.8em;
	color: #aaaaaa;
}

.comment_box td {
	padding-top: 0;
}

.comment_text {
	padding: 15px;
	background: #ffffff;
}

.icon_comment {
	text-align: right;
}

.icon_comment a {
	padding-left: 30px;
	background: url(./icon_comment.gif) no-repeat left center;
}

/* twitter widget */
#twtr-hd h3,
#twtr-hd h4,
.twtr-widget h3,
.twtr-widget h4,
.twtr-widget p,
.twtr-widget-profile h3,
.twtr-widget-profile h4 {
	clear: none;
	margin: auto;
	padding: auto;
	font-size: auto;
	color: auto;
	border: none;
	background-image: none;
}
/* twitter tweet button */
iframe.twitter-share-button {
	width: 115px!important;
}

/* エディター：スタイル */
.editor-style-btn1 {
	display: inline-block;
	padding: 1em 2em;
	color: #FFFFFF;
	border-radius: 50px;
	background-color: #366C30;
	transition: linear 0.2s;
}

.editor-style-btn1:hover {
	background-color: #999;
}

.editor-style-btn1 a:link,
.editor-style-btn1 a:visited,
.editor-style-btn1 a:active,
.editor-style-btn1 a:hover {
	color: #FFFFFF;
	text-decoration: none;
}

.editor-style-text1 {
	color: #ffffff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3),-1px -1px 5px rgba(0, 0, 0, 0.3);
}

/* フォームエラー */
.error_msg,
.error_msg_js {
	padding-left: 20px;
	background: url(./img/form_error.gif) left top no-repeat;
}
.error_msg_js_wrapper_privacy {
  float:left;
}
.form_attention {
	font-size: 0.9em;
	width: 100%;
	height: 12em;
	overflow: auto;
	border: 1px solid #eaeaea;
	padding: 10px;
}

.error_box {
	font-size: 0.95em;
	margin: 0 auto;
	background-color: #fff7f6;
	box-shadow: 1px 0px #e5e5e5,-1px 0px #e5e5e5;
	padding: 20px 5%;
}

.error_box .error {
	color: #e72719;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 2px solid #e72719;
}

.error_box .error_msg {
	margin-top: 20px;
}

/* CSS Document */
/*===============================================
●style_tab.css  画面の横幅が779pxまで
===============================================*/
@media screen and (max-width:779px) {
br.forTab {
	display: inline;
}

html,body {
	-webkit-text-size-adjust: 100%;
	-webkit-overflow-scrolling: touch;
}
body {
	font-size: 1.3em;
}

nav ul {
	display:block;
}

}


/* CSS Document */
/*===============================================
●style_sp.css  画面の横幅が479pxまで
===============================================*/
@media screen and (max-width:479px) {

br.forSp {
	display: inline;
}


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: base */

/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::.set-up */
.lower h1,
.body_common h2 {
	margin: 0 10px 20px;
	letter-spacing: 0.1em;
}


/* contact form */
#input-table .input_button {
	width: 80%;
}
input[type="text"] {
	width: 100% !important;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#input-table table .form_input_addnumber {
	width: 40% !important;
}

#input-table table textarea {
	width: 96% !important;
	font-size: 110%;
}





}


/* demo */
.pcdemo {
	display:block;
}
.spdemo,
.pure-toggle-label {
	display:none !important;
}

@media screen and (max-width:779px) {
.pcdemo {
	display:none;
}
.spdemo,
.pure-toggle-label {
	display:block!important;
}

}

