@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

body, html {
  height: 100%; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

div, section {
	box-sizing: border-box;
	overflow: hidden;
}

  @media screen and (min-width: 768px) {
    body {
      font-size: 16px;
      font-size: 1rem; } }

a {
  text-decoration: none; }
  a:hover {
	  opacity: 0.5;
  }

img {
  vertical-align: bottom;
  max-width: 100%; }

ul, li, dl, dt, dd, ol, p, h1, h2, h3, h4, h5, h6, p, figure, figcaption, input, textarea {
  margin: 0;
  padding: 0;
  list-style: none; }

ul:after, ol:after {
  *zoom: 1; }
  ul:after:after, ol:after:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden; }

.-text-right {
  text-align: right; }

.-text-left {
  text-align: left; }

.-text-center {
  text-align: center; }

/* body add class*/
.__sp {
  display: block; }
  @media screen and (min-width: 768px) {
    .__sp {
      display: none; } }

.__pc {
  display: none; }
  @media screen and (min-width: 768px) {
    .__pc {
      display: block; } }

.-sp_slide_wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: scroll; }
  @media screen and (min-width: 768px) {
    .-sp_slide_wrap {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
	
.wrapper {
	width: 1000px;
	height: auto;
	margin: 0 auto;
	position: relative;
}
	
/* ヘッダー */

header {
	width: 100%;
	height: 70px;
	position: relative;
	padding: 5px 0;
}

header a {
	display: inline-block;
}

header p.h1-title {
    font-size: 10px;
    color: #666;
}

h1.header-logo {

}


h1.header-logo img {
    width: auto;
    display: block;
    margin: 10px 0;
}

.header-contact {
	position: absolute;
	right: 10px;
	top: 0px;
}

/* pcnav */

#pcnav {
	width: 100%;
	height: auto;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d6d6d6+0,ffffff+100 */
	background: #d6d6d6; /* Old browsers */
	background: -moz-linear-gradient(top, #d6d6d6 0%, #ffffff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #d6d6d6 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #d6d6d6 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d6d6', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-weight: 500;
}

#pcnav ul {
	display: flex;
	width: 100%;
	height: auto;
	box-sizing: border-box;
}

#pcnav ul li {
	width: 25%;
	height: auto;
	box-sizing: border-box;
	padding: 15px 0;
	text-align: center;
	font-size: 15px;
}

#pcnav ul li a {
	color: #000;
	display: block;
}

#pcnav ul li a:hover {
	opacity: 0.5;
}

#pcnav ul li a span {
	display: block;
	font-size: 12px;
	color: #8cc63f;
	margin-top: 5px;
}

/* nav */

nav {
	width: 100%;
	height: 50px;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;/*線の太さ*/
    width: 25px;/*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
}
#nav-open span:before {
    bottom: -8px;
}
#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;/*最前面に*/
    width: 90%;/*右側に隙間を作る*/
    max-width: 330px;/*最大幅*/
    height: 100%;
    background: #fff;/*背景色*/
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示*/
    box-sizing: border-box;
}


/* side */

.sidebar {
	width: 30%;
	height: auto;
	float: right;
	box-sizing: border-box;
	padding: 20px;
}

.side-contact {
	width: 100%;
	height: auto;
	display: block;
}

.side-title {
    padding: 10px 0;
    border-bottom: 2px solid #8cc63f;
    font-size: 16px;
    margin: 15px 0 10px;
}

.side-arrow:before {
    display: block;
    width: 5px;
    height: 5px;
    border-top: solid 3px #697b91;
    border-right: solid 3px #697b91;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: '';
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 2px;
}

.side-arrow {
    padding: 10px 0;
	border-bottom: 1px dotted #666;
	display: block;
	color: #000;
}

/* top */

.fv {
	width: 100%;
	height: auto;
	position: relative;
	box-sizing: border-box;
	margin: 0 auto;
	background: url(../img/bg.jpg) no-repeat;
	background-size: cover;
	background-image: url(../img/bg.jpg);
	background-attachment: fixed;
	background-position: center center;
}

.phrase {
	width: auto;
	height: auto;
	margin: 0 auto;
	display: block;
	padding: 10% 0;
}

.main-column {
	width: 70%;
	height: auto;
	margin: 0 auto;
	float: left;
	box-sizing: border-box;
	padding: 20px 0;
}

.main-column h2 {
	font-size: 24px;
	line-height: 1.5;
	font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	padding-bottom: 10px;
	border-bottom: 2px solid #8cc63f;
}

.intro-wrap {
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	box-sizing: border-box;
	flex-wrap: wrap;
	justify-content:space-between;
}

p.whatis {
	padding: 20px 0;
	font-size: 18px;
	font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	line-height: 1.5;
	width: 100%;
}

.intro-inner {
	width: 50%;
	height: auto;
	margin: 10px 0;
	background: #efefef;
	flex-basis: 49%;
}

.intro-inner .intro-title {
	background: #000;
	color: #fff;
	font-size: 16px;
	text-align: center;
	padding: 5px 0;
}

.intro-inner p {
	font-size: 14px;
	line-height: 1.5;
	padding: 10px;
}

.intro-image {
	width: 90%;
	height: 100px;
	margin: 0 auto;
}

a.more {
	width: 80%;
	height: auto;
	display: block;
	margin: 20px auto;
	background: #8cc63f;
	color: #fff;
	padding: 10px 5px;
	text-align: center;
}

.i1 {
	background: url(../img/i1.jpg) no-repeat;
	background-size: cover;
	background-position:  bottom center;
}

.i2 {
	background: url(../img/i2.jpg) no-repeat;
	background-size: cover;
	background-position:  bottom center;
}

.i3 {
	background: url(../img/i3.jpg) no-repeat;
	background-size: cover;
	background-position:  bottom center;
}


.i4 {
	background: url(../img/i4.jpg) no-repeat;
	background-size: cover;
	background-position:  bottom center;
}

.hello-wrap {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 20px 0;
}

.hello-left {
	width: 65%;
	height: auto;
	float: left;
}

.hello-left p {
	font-size: 17px;
	line-height: 2;
}

.hello-left p.self {
	padding-top: 40px;
	font-size: 14px;
	font-weight: bold;
}

.hello-right {
	width: 35%;
	height: auto;
	float: right;
}

.hello-right img {
	width: 100%;
	height: auto;
	padding: 0 10px;
	box-sizing: border-box;
	display: block;
}

.hello-right:after {
	content: '';
	display: block;
	clear: both;
}

/* service */

.service-wrap {
	width: 100%;
	height: auto;
	margin: 0 auto;
	box-sizing: border-box;
}

.service-wrap h3 {
	font-size: 20px;
    padding-left: 10px;
    border-left: 5px solid #000;
    line-height: 1.5;
    margin: 0 0 20px;
}

.service-wrap ul li {
	line-height: 1.5;
	font-size: 16px;
}

.contact-link {
    width: 100%;
    display: block;
    margin: 20px auto 40px;
    padding: 15px 10px;
    text-align: center;
    color: #fff;
    background: #8cc63f;
    border-radius: 5px;
}


/* intro */

.id-wrap h3 {
	font-size: 20px;
    padding-left: 10px;
    border-left: 5px solid #000;
    line-height: 1.5;
    margin: 0 0 20px;
}

.id-inner {
	width: 70%;
	height: auto;
	float: left;
	line-height: 1.5;
}

.id-photo {
	width: 30%;
	float: right;
	box-sizing: border-box;
	padding: 0 10px;
}

.il {
	width: 30%;
	height: auto;
	float: left;
	font-weight: bold;
}

.ir {
	width: 70%;
	height: auto;
	float: left;
	margin-bottom: 20px;
}

p.root {
	line-height: 1.5;
}

.camera {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: no-wrap;
	box-sizing: border-box;
	margin: 0 auto;
	justify-content:space-between;	
	margin-bottom: 40px;
}

.camera div {
	flex-basis: 33.3%;
	box-sizing: border-box;
	width: 33.3%;
}

.camera div img {
	width: 100%;
	display: block;
	padding: 0 5px;
	box-sizing: border-box;
}

/* share */

.share-wrap h3 {
	font-size: 20px;
    padding-left: 10px;
    border-left: 5px solid #000;
    line-height: 1.5;
    margin: 0 0 20px;
}

.share-wrap p {
	line-height: 1.5;
}
span.red {
	font-weight: bold;
	color: red;
}

.mgB10 {
	margin-bottom: 15px;
}

.price {
	font-weight: bold;
	font-size: 18px;
}
.desc-text {
	margin-bottom: 15px;
	font-size: 15px;
}

.desc-text2 {
	margin-bottom: 15px;
	font-size: 13px;
}

.flex-wrap {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.share-sv {
	width: 48%;
	flex-basis: 48%;
	height: auto;
	margin-bottom: 20px;
}

.share-sv img {
	width: 100%;
	display: block;
}



/* contact */

.contact-wrap-inner {
    width: 100%;
    padding: 20px 15px 10px 15px;
    margin: 10px auto;
    box-sizing: border-box;
    border: #E1CFB1 2px solid;
    background: #FFF;
	font-size: 13px;
	line-height: 2;
}

.contact-wrap-inner input {
	margin-bottom: 15px;
}
/* 必須マーク */
.must {
	background: #FF1A00;
}

/* 任意マーク */
.free {
	background: #999;
}

.must,
.free {
	color: #FFF;
	border-radius: 3px;
	font-size: 12px;
	margin-right: 10px;
	padding: 5px 10px;
	letter-spacing: 0.2em;
}

/*******************************
* フォームの設定
********************************/
/* フォーム入力項目 */
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 textarea  {
	 width: 100%;
	 padding: 8px 15px;
	 margin-right: 10px;
	 margin-top: 10px;
	 border: 1px solid #ddd;
	 border-radius: 3px;
}

/* 送信ボタン */
input.sub-btn {
	width: 300px;
	height: 60px;
	background: #F90;
	color: #FFF;
	font-size: 1.1em;
	font-weight: bold;
	letter-spacing: 0.2em;
	border: 1px solid #ffae13;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;	
}

/* 送信ボタンホバー */
input.sub-btn:hover{
	background: #FFF;
	color: #F90;  
}

/* 送信ボタン中央寄せ */
.center {
	text-align:center;
}


/* footer */

footer {
	width: 100%;
	height: auto;
	background: #5b5b5b;
	color: #fff;
	line-height: 2;
	text-align: center;
	padding: 40px 0;
	font-size: 12px;
}
	


  @media screen and (max-width: 999px) {

.wrapper {
	width: 100%;
	height: auto;
	padding: 0 10px;
}

header {
	height: auto;
	border-bottom: 1px solid #efefef;
}

.header-contact {
	display: none;
}

header p.h1-title {
    font-size: 8px;
    color: #666;
}

h1.header-logo img {
    width: auto;
    display: block;
    margin: 12px 0 10px;
	width: 90%;
}

#pcnav {
	display: none;
}

.phrase {
	max-width: 70%;
}

.main-column {
	width: 100%;
}

.main-column h2 {
	font-size: 18px;
}

p.whatis {
	font-size: 85%;
}

.intro-inner {
	width: 100%;
	flex-basis: 100%;
}

.hello-left p {
	font-size: 14px;
}

.hello-left, .hello-right {
	width: 100%;
}

.sidebar {
	display: none;
}

.main-column h3 {
	font-size: 18px;
}

.service-wrap ul li {
    line-height: 1.5;
    font-size: 14px;
}

.id-inner {
	width: 100%;
}

.id-photo {
	width: 100%;
}

.il {
	width: 100%;
}

.ir {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 20px;
    padding: 10px 0;
}

.id-wrap .map iframe {
	max-height: 300px;
	max-width: 100%;
}

#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: 10px;
}

#nav-content a {
    padding: 20px 15px;
}

#nav-drawer {
    text-align: right;
    position: absolute;
    width: 100%;
    top: 0;
}



	  
  }