@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/* Reset css */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, figure {
	margin: 0;
	padding: 0;
	line-height: 1;
	letter-spacing: 0;
}
p, ul, dl, dt, dd, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
	outline: none;
}
ul li {
	list-style: none;
	outline: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td, th {
	padding: 0;
}
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}
img {
	vertical-align: bottom;
	border: none;
}
a {
	line-height: 100%;
	text-decoration: none;
	outline: none;
}

html {
	width: 100%;
	font:13px/1rem "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro";
	color: #333;
}
body {
	width: 100%;
	position: relative;
}
main {
	display: block;
}
a {
	color: inherit;
}
img {
	max-width: 100%;
	height: auto;
}
/* sp
---------------------------------------- */
.forPC {
	display: none;
}

.br-pc { display:none; }
.br-sp { display:block; }

/* ハンバーガーメニュー
---------------------------------------- */

.inner {
    margin: 0 auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}

/* header */
#top-head {
    top: -100px;
    position: absolute;
    width: 100%;
    margin: 100px auto 0;
    padding: 30px 0 0;
    line-height: 1;
    z-index: 999;
}
#top-head a,
#top-head {
    color: #fff;
    text-decoration: none;
}
#top-head .inner {
    position: relative;
}
#top-head .logo {
    float: left;
    font-size: 36px;
}
#sp-nav ul {
    list-style: none;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
}
#sp-nav ul li {
    float: left;
}
#sp-nav ul li a {
    padding: 0 30px;
}


/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    height: 55px;
    background: #fff;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}
#top-head.fixed #sp-nav ul li a {
    color: #333;
    padding: 0 20px;
}

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}

/* メニューエリア */

    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        background: #006400;
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 13px;
        top: 10px;
        color: #333;
        font-size: 26px;
		width: 80px;
    }

    #top-head.fixed .logo img,
    #top-head .logo img{
		width: 80px;
    }

    #sp-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
        background: #006400;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #sp-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #sp-nav ul li {
        float: none;
        position: static;
    }
    #top-head #sp-nav ul li a,
    #top-head.fixed #sp-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 18px 0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #sp-nav スライドアニメーション */
    .open #sp-nav {
        /* #sp-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
	
/* footer
---------------------------------------- */
footer {
	background-color: #333;
}
footer .inner {
	position: relative;
    padding-top: 50px;
	background-color: #006400;
	color:#fff;
}
footer #totop:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 42%;
	border-bottom: 1px solid #333;
}
footer #totop:after {
	position: absolute;
	top: 0;
	right: 0;
	content: "";
	width: 42%;
	border-bottom: 1px solid #333;
}
footer #totop a {
	display: block;
    width: 10%;
    text-align: center;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 300;
}
footer .wrapper {
	overflow: hidden;
	margin-bottom: 15px;
}
footer .column {
}
footer .column p#foot-logo {
    text-align: center;
}
footer .column li {
	font-weight: bold;
	margin-bottom: 20px;
	float: right;
    padding-right: 10px;
}
footer .column li:last-child {
	margin-bottom: 0;
}
footer .column li a {
	display: block;
	padding: 5px;
}
footer .column li a:hover {
	text-decoration: underline;
}
footer .column li ul {
	margin-left: 15px;
	color: #808080;
}
footer .column li li {
	font-weight: normal;
	margin-bottom: 1px;
}
footer .column p#foot-logo img {
    width: 60px;
}
footer #foot-address {
	font-size: 1rem;
	line-height: 1.6;
}
footer .column:last-child ul {
	margin-bottom: 25px;
}
footer .column:last-child ul ul {
	margin-bottom: 0;
}
footer .btn-area {
	overflow: hidden;
}
footer .btn-area .btn {
	float: right;
	width: 254px;
	border: 1px solid #333;
	background-color: #fff;
	margin-bottom: 30px;
}
footer .btn-area .btn.contact {
	width: 163px;
	margin-right: 20px;
}
footer .btn-area .btn a {
	padding: 15px 0;
	height: auto;
}
#copyright {
	line-height: 50px;
	color: #fff;
	text-align: center;
	font-size: 0.9rem;
}
footer #sp-foot-address {
	font-size: 0.9rem;
	line-height: 1.6;
	text-align: center;
	margin-top: 2%;
}

/* コンテンツエリア
---------------------------------------- */
.box_bg_photo {
    xposition: relative;
    height: 100vh;
    xheight: 710px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column
 flex-direction: column;
}
main#index div.textcenter h1 {
    padding-top: 50%;
}
h1 {
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 12px;
}
#copy {
    font-size: 100%;
    letter-spacing: 0.02em;
    line-height: 1.5em;
    font-weight: bold;
    transform: translate(0, -40%);
    -webkit-transform: translate(0, -40%);
    color: #000;
}
.bg {
    background-color: #f5f3f3;
}
h2 {
	text-align: center;
	margin-bottom: 12px;
	font-size: 2em;
	padding-top:10%;
}
.sub-ttl {
	text-align: center;
	font-size: 1.4rem;
	font-weight: lighter;
	color: #444;
	    border-top: 1px solid;
    width: 300px;
    padding-top: 10px;
    margin: 0 auto;
	padding-bottom: 30px;
}
.catch {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
}
.btn {
    text-align: center;
}
.btn a {
	display: block;
	height: 50px;
	margin: auto;
}
.btn.next a {
    width: 215px;
    line-height: 31px;
    height: 31px;
    font-size: 1.15rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    color: #333;
    border: 2px solid #006400;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    position: relative;
    background-color: #fff;
}
.btn.next a:after {
    content: '\f432';
    font: lighter 20px Genericons;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}


main#index #business ul{
	display: table;
padding: 0px 20px;
margin: 0 auto;
}
main#index #business li{
	font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
	display: table;
}
main#index #business p.title{
	padding: .75em 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    text-align: center;
   margin: 5%;
	    font-weight: bold;
}
main#index #business p.img{
    margin-top: 5%;
    text-align: center;
}
main#index .catch {
    text-align: left;
    padding: 20px;
}
div#business,div#company,div#contact {
	padding-bottom:10%;
}

main#index #business p.maker span{
	font-weight: bold;
}
main#index #business p.maker{
	margin-top:10%;
}
/*====================
お問合わせフォーム
 ====================*/

#contactArea {
	width: 100%;
	margin: 0 auto 80px auto;
	text-align: left;

}


#contactFormArea {
	xwidth:810px;
	padding: 10px 25px;
	margin: 0 auto;
    border-color: #c8c9ca;
    border-style: solid;
    border-width: 1px;
}


#contactForm {
    width: 98%;
    position: relative;
    margin: 0 auto;
	padding: 10px 0;
    xfont-size: 80%;
    border-style: none;
}

#contactForm tr, #contactForm th, #contactForm td {
    xwidth: 100%;
	display: block;
	text-align: center;

}

/*Safariのみ*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, #contactForm {
  width: 360px !important;
  }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, #contactForm td {
  width: 360px !important;
  }
}

/*Safariのみ（2017年2月現在）*/

_::-webkit-full-page-media, _:future, :root #contactForm {
  width: 360px !important;
  }
  }

_::-webkit-full-page-media, _:future, :root #contactForm td {
  width: 360px !important;
  }
  }


#contactForm th{
	font-weight: normal;
	border-width: 0 0 1px 0;
	padding: 10px 0;
	vertical-align: top;

}

#contactForm td{

	font-size: 80%;
	border-width: 0 0 1px 0;
	padding: 10px 0;
	text-align: center;

	xborder-width: 1px;
	xborder-color: #c8c9ca;
}

#contactForm p.caution{
    width: 100%;
	padding: 5px 0px 2px 0px;
}

#mail-form-footer {
    width: 90%;
    padding: 20px 0;
    margin: 15px auto;
text-align: center;
}

.formhead-greed {
	width: 160px;
	xwidth: 100%;
	display: inline-block;
	xfont-weight: bold;
	color: #fff;
	background-color: #3cb371;
	padding: 5px 15px;
	margin: auto 0;
	text-align: center;

-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
/*IE 7 AND 8 DO NOT SUPPORT BORDER RADIUS*/
}

.formhead-need {
	width: 160px;
	xwidth: 100%;
	display: inline-block;
	xfont-weight: bold;
	color: #fff;
	background-color: #3cb371;
	padding: 5px 15px;
	margin: auto 0;
	text-align: center;

-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
/*IE 7 AND 8 DO NOT SUPPORT BORDER RADIUS*/
}
input::-ms-clear {
 display: none;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
 margin: 0;
 -webkit-appearance: none;
}
input, textarea, label {
	display: inline-block;
	vertical-align: middle;
}
input, textarea, select {
	border: 1px solid #b2b2b2;
	padding: 10px;
	margin: 5px 0;
	line-height: 1;
	width: 100%;

}

select {
/*-webkit-appearance: none;*/
	/*border-radius: 0;*/
	/*background-color: #FFF;*/
}
::-webkit-input-placeholder, :-ms-input-placeholder, ::-moz-placeholder {
 color: #ccc !important;
}
input:focus, textarea:focus, select:focus {
	outline: none;
	border: 1px solid #808080;
}
label {
	line-height: 1;
	padding: 10px 0;
	margin-right: 20px;
}
textarea {
	height: 175px;
	resize: vertical;
	box-sizing: border-box;
	line-height: 1.7;
}

input#zip, input#dest-zip {
	width: 200px;
}
input#address, input#dest-address {
	width: 100%;
}
input#zip, input#dest-zip, select#city, input#etc1-text, input#etc2-text, input#etc3-text {
	margin-left: 10px;
}
input[type=checkbox], input[type=radio] {
	margin-right: 5px;
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	vertical-align: middle;
}
input[type="reset"].wpcf7c-conf, #reset.wpcf7c-conf {
	display: none;
}
input[type="reset"], input[type="button"], input[type="submit"] {
	width: 165px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 0;
	line-height: 31px;
	font-size: 1.15rem;
	font-weight: bold;
	letter-spacing: 0.2rem;
	-webkit-appearance: none !important;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
input[type="reset"], input[type="button"] {
	background-color: #fff;
	border: 2px solid #006400;
	color: #2c251f;
	margin-right: 20px;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
input[type="submit"] {
	background-color: #006400;
	border: 2px solid #006400;
	color: #fff;
}
input[type="submit"][disabled] {
	opacity: 0.7;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
form hr {
	border-top: 1px solid #B2B2B2;
	margin: 50px auto;
	width: 960px;
}

/* company
---------------------------------------- */
main#company .ico-area {
	height: 32px;
	margin-bottom: 25px;
}
main#company .ico-area dt, main#company .ico-area dd {
	float: left;
	line-height: 32px;
}
main#company .ico-area dt {
	font-size: 0.9rem;
	background-color: #ececec;
	padding: 0 5px;
	margin-right: 10px;
}
main#company .ico-area dd {
	width: 220px;
	position: relative;
}
main#company .ico-area dd p {
	width: 100%;
	font-size: 1.1rem;
	line-height: 28px;
	padding-left: 1rem;
	padding-right: 25px;
	box-sizing: border-box;
	border: 2px solid #444;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	position: absolute;
	z-index: 6;
}
main#company .ico-area dd p:after {
	content: '\f431';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	font: lighter 27px Genericons;
	margin: auto;
}
main#company .ico-area dd ul {
	opacity: 0;
	width: 100%;
	position: absolute;
	top: 32px;
	left: 0;
	z-index: -1;
	background-color: #eee;
}
main#company .ico-area dd:hover ul {
	opacity: 1;
	margin-top: 0;
	z-index: 5;
}
main#company .ico-area dd a {
	display: block;
	height: 0;
	text-indent: 1.1rem;
}
main#company .ico-area dd:hover a {
	height: 2.3rem;
	line-height: 2.3rem;
}
main#company .ico-area dd a:hover {
	background-color: #c1c1c1;
}
main#company .entry {
	clear: both;
	overflow: hidden;
	margin-bottom: 50px;
}
main#company .entry article {
	float: left;
	width: 220px;
	text-align: center;
	margin-right: 25px;
	margin-bottom: 25px;
}
main#company article:nth-child(4n) {
	margin-right: 0;
}
main#company article .photo {
	width: 220px;
	height: 180px;
	overflow: hidden;
	margin-bottom: 10px;
	position:relative;
}
main#company article .photo img {
	width: 100%;
	left:0;
	position: absolute;
}
main#company article h3 {
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.4;
	color: #3c3c3c;
}
/* #contact
---------------------------------------- */
main#contact form {
	width: 100%;
}
main#contact form dl dt {
	padding: 0;
	width: 180px;
	line-height: 35px;
}
main#contact form dl dd {
	width: 750px;
}
main#contact form .description {
	color: #EC1C24;
}
main#contact form .attention {
	margin-top: 15px;
	font-size: 14px;
	line-height: 1.7;
}
main#contact form #privacy {
	overflow: auto;
	box-sizing: border-box;
	padding: 30px;
	height: 173px;
	border: 1px solid #B2B2B2;
}
main#contact .wpcf7-response-output {
	box-sizing: border-box;
	border-radius: 4px;
	margin: 50px auto 0 auto;
	padding: 10px 15px;
	width: 960px;
	color: #F16B3A;
	font-weight: bold;
	text-align: center;
}
main#contact .wpcf7c-conf:not(#reset) {
	background-color: #FFEF32;
}
main#privacy, main#business, main#company, main#contactform{
	margin:50px 0px 100px 0px;
	padding: 3%;
}


/* #privacy
---------------------------------------- */
main#privacy h3 {
	font-size: 1.2em;
    font-weight: bold;
	padding:20px 0px 20px 0px;
}
main#privacy p.text {
	line-height: 1.5em;
}
main#privacy p.adress span {
	font-size: 1.2em;
}
main#privacy p.adress {
	margin-top:20px;
	line-height:1.5em;
}
/* #company
---------------------------------------- */

main#company dl{
	font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
	width: 100%;
	margin:0 auto;
	padding: 3% 5%;
}
main#company dl:last-child{
	padding-bottom: 0px;
}
main#company dt{

	padding:10px;

}
main#company dd{
	padding:10px;
	font-weight: bold;
}
main#company dd a{
	background: #ccc;
    width: 60px;
    text-align: center;
    padding: 3px;
    display: inline-block;
    border-radius: 2px;
}
main#company dd.forSP a{
	background: #fff;
    text-align: left;
	width: 100px;
}
main#company dd a:hover{
	background: #3c3c3c;
	color:#fff;
}
main#company dd.forSP a:hover{
	color:#333;
	background: #fff;
}
/* #business
---------------------------------------- */

main#business ul{
	text-align: center;
}

main#business ul li{
	padding:10px;
	text-align:center;
	margin-bottom: px;
	display: inline;
}

main#business ul li p{
	padding-top:5px;
	line-height: 1.5em;
    font-size: 1.2em;
	margin-bottom: 15px;
	border-bottom: 1px dotted #ccc;
}

main#business ul li p span{
	font-weight:bold;
}

/*----------------------------------------------------------------------------
XX：for other devices
----------------------------------------------------------------------------*/
/*@import '_aside.scss';*/
/*@import '_table.scss';*/
/*.fadeInDown {
	-webkit-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-duration:1s;
	-ms-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
	0% { opacity: 0; -webkit-transform: translateY(-20px); }
	100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
	0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
	100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}*/
.u8fadeItem {
  transition: .8s; }
  .u8fadeItem.fadeDelay {
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    -ms-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s; }
  .u8fadeItem.fadeIn {
    opacity: 0;
    filter: alpha(opacity=0); }
    .u8fadeItem.fadeIn.efdone {
      opacity: 1;
      filter: alpha(opacity=100); }
  .u8fadeItem.fadeInDown {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px); }
    .u8fadeItem.fadeInDown.efdone {
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0); }
  .u8fadeItem.fadeInUp {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px); }
    .u8fadeItem.fadeInUp.efdone {
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0); }

.following-btn {
  position: fixed; }
  .following-btn#pagetop {
    display: none;
    bottom: 20px;
    right: 20px;
    z-index: 103; }
    .following-btn#pagetop a {
      display: table;
      width: 52px;
      height: 52px;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      background-color: #54b7c0;
      color: white; }
      .following-btn#pagetop a:hover {
        background-color: white;
        color: #54b7c0;
        text-decoration: none; }
      .following-btn#pagetop a i {
        display: table-cell;
        font-size: 3.0rem;
        text-align: center;
        vertical-align: middle; }
