﻿@import url('https://fonts.googleapis.com/css2?family=Rokkitt:wght@300;500;900&display=swap');

* {
	-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;
	border: 0;
}

body,html,#wrap {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	position: relative;
	font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0;
	line-height: 28px;
	color: #000;
}

header,nav,main,footer,.footer_p {
	display: block;
	margin: 0 auto;	
	padding: 0;
	min-width: 900px;
}

.sp-only {
	display: none;
}

ol,ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

a {
	color: #fff;
	text-decoration: none;
	transition:all .5s;
}

a:hover {
	color: #f6ae54;
}

.hover-none {
	pointer-events: none;
}

.hover-color-none:hover {
	color: #4d4d4d !important;
}

.anchor {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

/*====================

下から浮かぶ動き

====================*/
.rise {
	opacity: 0;
	visibility: hidden;
	transform: translateY(40px);
	transition: opacity 3s, visibility 3s, transform 2s;
}

.is-fadein {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}



/*====================

header

====================*/
header {
	width: 100%;
	margin: 0;
	padding: 0;
	background-image: url(../img/bg.jpg);
}

.hamburger {
	display: none;	
	margin: 0;
	padding: 0;
}

nav.globalMenuPC {
	width:100%;
	position: fixed;
	flex-wrap: nowrap;
	z-index: 9999;
	top: -2px;
	left: 0;
	color: #000;
	background: transparent;
	opacity: 1;
 	font-size: 14px;
	font-weight: bold;
    height: 100px;
    line-height: 100px;
	margin: 0;
	padding: 25px 0;
    box-sizing: border-box;
	white-space: nowrap;
	background-image: url(../img/bg.jpg);
}
/*ナビゲーションを横並びに*/
nav.globalMenuPC ul{
	list-style: none;
	display: flex;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	max-width: 1200px;
	justify-content: space-around;
}
  /*2階層目以降は横並びにしない*/
  nav.globalMenuPC ul ul{
	display: block;
  }
  
  /*下の階層のulや矢印の基点にするためliにrelativeを指定*/
  nav.globalMenuPC ul li{
	position: relative;
	text-align: center;
	line-height: 50px;
	padding: 0 1.4em;
  }

  nav.globalMenuPC ul li img{
	height: 50px;
	margin: 0;
	padding: 0;
  }

  .img-logo {
	height: 20px !important;
  }

  nav.globalMenuPC ul li ul li{
	position: relative;
	width: 100%;
  }
  
/** 最初だけ左寄せ */
nav.globalMenuPC ul li:first-child{
	margin-right: auto;
  }

  /*ナビゲーションのリンク設定*/
  nav.globalMenuPC ul li a{
	display: block;
	text-decoration: none;
	color: #000;
	padding: 0;
	position: relative;
  }

  nav.globalMenuPC ul li a.border-bk::after{
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #000000;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;  /*変形の時間*/
  }

  nav.globalMenuPC ul li a.border-bk:hover::after {
	color: red;
	transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
	transform-origin: left top; /*左から右に向かう*/
  }

  .op-change:hover {
	opacity: 0.5;
  }
  
  nav.globalMenuPC ul li li a{
	padding:0px;
  }
  
  /*下の階層を持っているulの指定*/
  nav.globalMenuPC li.has-child ul{
	  /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:60px;
	z-index: 9997;
	  /*形状を指定*/
	background:#000;
	width:220px;
	  /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
  }
  
  /*hoverしたら表示*/
  nav.globalMenuPC li.has-child:hover > ul,
  nav.globalMenuPC li.has-child ul li:hover > ul,
  nav.globalMenuPC li.has-child:active > ul,
  nav.globalMenuPC li.has-child ul li:active > ul{
	visibility: visible;
	opacity: 1;
  }
  
  /*ナビゲーションaタグの形状*/
  nav.globalMenuPC li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(255,255,255,0.6);
	padding: 0 14px;
  }
  
  nav.globalMenuPC li.has-child ul li:last-child a{
	border-bottom:none;
  }
  
  nav.globalMenuPC li.has-child ul li a:hover,
  nav.globalMenuPC li.has-child ul li a:active{
	background:#666;
  }
  
 
  .tel-btn {
	background: #000;
	color: #fff !important;
	padding: 0 20px !important;
	border-radius: 100px;
	font-family: Futura, 'Century Gothic', sans-serif;
  }

  .tel-btn:hover {
	background: #666;;
	color: #fff !important;
	padding: 0 20px !important;
	border-radius: 100px;
	font-family: Futura, 'Century Gothic', sans-serif;
  }


/*====================

main

====================*/
h1 {
	display: none;
}

main {
	width: 100%;
	padding: 100px 0 0 0;
	background-image: url(../img/bg.jpg);
	background-size: cover;
}

/*====================

fv

====================*/

.fv {
	width: 100%;
	height: 600px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.fv-img {
	display: block;
	margin: 0 auto;
	width: 90%;
	max-width: 1200px;
	height: 600px;
	object-fit: cover;
	object-position: 100% 60%;
    border: 1px solid #000;
    border-radius: 40px;
}

h2 {
	display: inline-block;
	width: auto;
	white-space: nowrap;
	background: #fff;
	font-size: 43px;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 43px;
	padding: 0.4em 1em;

	position: absolute;
	bottom: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/*====================

Service contents

====================*/
.service-contents {
	width: 90%;
	max-width: 1100px;
	padding: 80px 0;
	margin: 0 auto;
	text-align: center;
	background-image: url(../img/top-001.png);
	background-repeat: no-repeat;
	background-position: left 50px;
	background-size: 150px;
}

.service-contents2 {
	width: 90%;
	max-width: 1100px;
	padding: 80px 0;
	margin: 0 auto;
	text-align: center;
	background-image: url(../img/about/tool-001.png);
	background-repeat: no-repeat;
	background-position: left 50px;
	background-size: 150px;
}

h3 {	
    display: inline-block;
	font-size: 35px;
	font-weight: 900;
	font-family: 'Rokkitt', serif;
	border-bottom: 3px dashed #000;
	padding: 0 0 4px;
}

h3.h3-w {
	display: inline-block;
	font-size: 35px;
	font-weight: 900;
	font-family: 'Rokkitt', serif;
	border-bottom: 3px dashed #fff;
	padding: 0 0 4px;
}

h4 {
	font-size: 20px;
	font-weight: bold;
	margin: 0.5em auto 1.5em;
}

p {
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
}

.list-box {
	display: flex;
	justify-content: space-between;
	margin: 30px auto;
}

.img-list {
	display: flex;
	flex-direction: column;
	max-width: 240px;
	width: 24%;
}

.list-text {
	width: 100%;
	color: #fff;
	background: #000;
	margin: 20px 0 0 0;
	padding: 0.8em 0;
	font-size: 20px;
	font-weight: bold;
}

/*====================

Message

====================*/

.message {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	background-image: url(../img/bg-wood.jpg);
	background-size: cover;
	text-align: center;
	color: #fff;
	position: relative;
}

.message-in {
	max-width: 1200px;
	width: 100%;
	padding: 60px 120px;
	margin: 0 auto;
}

.message-box {
	display: flex;
	margin-top: 40px;
}

.mesage-text,
.mesage-text2,
.message-img,
.message-img2 {
	width: 50%;
}

.mesage-text {
	font-size: 16px;
	line-height: 34px;
	text-align: left;
}

.message-img {
	padding-left: 50px;
}

.message-img img,
.message-img2 img {
	width: 100%;
}

.mesage-text2 {
	font-size: 16px;
	line-height: 34px;
	text-align: left;
	padding-left: 50px;
	padding-top: 60px;
}

.message-img2 {
	padding: 60px 0 0 0;
}


/*====================

Instagram

====================*/
.ig {
	width: 90%;
	max-width: 1100px;
	padding: 80px 0;
	margin: 0 auto;
	text-align: center;
}

.ig-icon {
	width: 30px;
	height: 30px;
	margin-top: -10px;
}

.ig-box {
	display: flex;
	flex-direction: column;
	max-width: 1100px;
	padding-top: 30px;
}

.insta_list{
	text-align: center;
	margin: 0 auto;
	width: 100%;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.insta_list li {
	width: 25%;	
	box-sizing: border-box;
    padding: 20px;
}

.insta_list img{
    width: 100%;
	border: 4px solid #000;
}






/*====================

Information

====================*/
.info {
	width: 90%;
	max-width: 1100px;
	padding: 80px 0;
	margin: 0 auto;
	text-align: center;
}

.info-box {
	display: flex;
}

table {
	width: 60%;
}

th {
	width: 8em;
	vertical-align:top;
}

span {
	background: #000;
	color:#fff;
	padding: 0.2em 1em;
}

td {
	width: auto;
	vertical-align:top;
	text-align: left;
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
	padding-left: 1em;
}

td.td-area {
	font-weight: 900;
}

td.td-info {
	padding-bottom: 20px;
}

.map {
	width: 40%;
	max-width: 380px;
	margin-left: 40px;
}

.map img {
	width: 100%;
	mix-blend-mode: multiply;
}



/*====================

CTA

====================*/

.cta {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 50px 0 70px;
	background-image: url(../img/bg-wood-normal.jpg);
	background-size: cover;
	text-align: center;
	color: #fff;
	position: relative;
}

.cta-img {
	position: absolute;
	bottom: 0;
	right: 80px;
	width: 160px;
}

.cta-title {
	display: flex;
	align-items:flex-end;
	justify-content: center;
	margin-bottom: 45px;
}

.cta-title img {
	width: 60px;
}

h5 {
	font-size: 24px;
	line-height: 34px;
}

.btn-list {
	display: flex;
	justify-content: center;
}

/*ボタン*/
.Button {
	overflow: hidden;
	width: 20em;
	height: 50px;
	margin: 0 5em;
	padding: 0;
}
.Button a {
	display: block;
	position: relative;
	z-index: 100;
	text-align:center;
	background: #000;
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	line-height: 50px;
	text-decoration:none;
	padding-left: 30px;
}
.Button a:hover {
	background: #f6ae54;       /* マウスオーバーカラー */
}
#IconList3 a:before {        /*白い丸 */ 
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 20px;
	width: 20px;
	height: 20px;
	margin-top: -8px;
	border-radius: 50%;        /* CSS3草案 */  
    -webkit-border-radius: 50%;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 50%;   /* Firefox用 */  
	background: #fff;
}
#IconList3 a:after {        /*「after要素」で三角 */ 
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 27px;
	width: 0;
	height: 0;
	margin-top: -4px;
	border: 7px solid transparent;        /*top right bottom を透明化 */ 
	border-left: 9px solid #595857;
	transition: 0.5s;
}
#IconList3 a:hover:after {        /*「after要素」のマウスオーバー（カラーを合わせる） */  
	border-left: 9px solid #f6ae54;
}







/*====================

footer

====================*/
footer{
	width:100%;
	background: #000;
}

footer .footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 0 40px;
	display: flex;
}

.footer-left {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.footer-name {
	display: inline-block;
	font-size: 24px;
	font-weight: 900;
	font-family: 'Rokkitt', serif;
	padding: 0 0 4px;
	color: #fff;
}

.footer-tel {
	color: #fff;
	font-size: 20px;
	padding: 0;
	font-family: Futura, 'Century Gothic', sans-serif;
	margin-top: 24px;
	letter-spacing: 0.1em;
}

.icon-list {
	display: flex;
}

.footer-icon {
	margin: 16px 16px 0 0;
	width: 34px;
	display: block;
}

.footer-icon img {
	width: 100%;
}




.footer-right {
	width: 50%;
	display: flex;
	min-width: 500px;
}

.icon-tool {
	width: 24px;
}

footer ul {
	display: flex;
	width: 100%;
	justify-content:space-between;
}

footer ul li a {
	color: #fff;
	font-size: 17px;
	font-weight: bold;
}

footer ul li ul {
	display: flex;
	flex-direction: column;
}

footer ul li ul li a {
	font-size: 12px;
	font-weight: normal;
	color: #fff;
	padding-left: 1em;
}

.footer_p {
	font-size: 16px;
	text-align: center;
	background-image: url(../img/bg.jpg);
	padding: 20px 0;
}





/*====================

下層共通

====================*/

.ul-fv {
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    height: auto;
    position: relative;
}

.ul-fv-img {
    width: 100%;
    height: auto;
}

.ul-fv .ul-h2 {
    position: absolute;
    bottom: 10%;
    width: 550px;
    text-align: center;
}

/*====================

aboutページ

====================*/

.about-bg {
	width: 100%;
	height: auto;
	margin: 0 auto 100px;
	padding: 70px 0;
	background-image: url(../img/bg-wood-normal.jpg);
	background-size: cover;
	text-align: center;
	color: #fff;
	position: relative;
}

.about-in {
	max-width: 1100px;
	width: 90%;
	padding: 0;
	margin: 0 auto;
}

.about-bg-icon {
	background-image: url(../img/about/tool-002.png);
	background-repeat: no-repeat;
    background-position: top right;
    background-size: 150px;
}

.company-info {
	background: #fff;
	color: #000;
	width: 50%;
}

.company-info tr {
	background-image: linear-gradient(to right, #000, #000 6px, transparent 6px, transparent 12px);
	background-size: 10px 1px;          /* グラデーションの幅・高さを指定 */
	background-position: left bottom;  /* 背景の開始位置を指定 */
	background-repeat: repeat-x;       /* 横向きにのみ繰り返す */

	height: 32px;
	line-height: 32px;
}

.company-info tr:last-child {
	background-image: none;
}

.company-info th,
.company-info td {
	height: 32px;
	line-height: 32px;
	vertical-align: middle;
}

.company-info th {
	padding-left: 1em;
	text-align: left;
	width: 6em;
	font-weight: 700;
}

.message-img iframe {
	width: 100%;
}

.text-big {
	display: block;
	margin: 0 0 0.5em;
	padding: 0;
	font-size: 24px;
	font-weight: bold;
	background: none;
}

.w-border {
	border-bottom: 2px solid #fff;
	margin: 40px 0;
}

.margin-btn30 {
	margin-top: 30px;
}

.about-img {
	width: 45%;
	min-width: 400px;
	padding-left: 50px;
}

.about-img img {
	width: 100%;
}

.about-text {
    width: auto;
    text-align: left;
}


/*====================

contactページ

====================*/

.service-contents3 {
    width: 90%;
    max-width: 1100px;
    padding: 80px 0;
    margin: 0 auto;
    text-align: center;
    background-image: url(../img/contact/tool-001.png);
    background-repeat: no-repeat;
    background-position: left 50px;
    background-size: 100px;
}

.submit-btn {
	display: block;
    position: relative;
    z-index: 100;
    text-align: center;
    background: #000;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 50px;
    text-decoration: none;
    padding-left: 30px;
	overflow: hidden;
    width: 16em;
    height: 50px;
    margin: 0 auto;
    padding: 0;
	transition: 0.5s;
}

.submit-btn:hover {	
    background: #999;
    color: #000;
}

.submit-btn::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    width: 20px;
    height: 20px;
    margin-top: -8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: #fff;
}

.submit-btn::after {
	display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 27px;
    width: 0;
    height: 0;
    margin-top: -4px;
    border: 7px solid transparent;
    border-left: 9px solid #595857;
    transition: 0.5s;
}

#contact-form {
	background-image: url(../img/bg-wood-normal.jpg);
	padding: 90px 0;
}

.tb_contact {
	display:block;
	background: #fff;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 80px;
}

span.tb_item {
	font-size: 20px;
	font-weight: bold;
	background: none;
	color: #000;
	padding: 0;
}

/* 入力エリア */
input[type="text"], input[type="email"],input[type="tel"]{
	width: 100%;
    line-height: 33px;
    border: 1px solid #000;
    margin: 16px 0 36px 0;
    font-size: 16px;
    border-radius: 4px;
    background-color: #fff;
    padding: 0.2em 1em;
}


/* テキストエリア */
textarea{
	width:100%;
	height:148px;
	border:1px solid #000;
	margin:16px 0 36px 0;
	font-size:16px;
	border-radius: 4px;
	background-color: #fff;
    padding: 0.2em 1em;
}

.page-info {
	width: 100%;
}

.page-info p {
	text-align: center;
	font-size: 16px;
	color: #fff;
	margin: 16px 0;
}

.page-info2 p {
	text-align: center;
	font-size: 16px;
	color: #000;
    padding: 20px 0;
}


.btn_flex {
	display: flex;	
    justify-content: center;
}

input[type="button"],
input[type="submit"] {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background: #000;
    margin: 40px 25px;
    padding: 0.5em 2em;
	transition: 0.5s;
}

input:hover {
	color: #000;
	background: #f6ae54;
}

.contact-bottom {
	width: 100%;
	height: 150px;
	position: relative;
}

.contact-bottom img {
	position: absolute;
	bottom: -10px;
	right: 200px;
	width: 150px;
}























/*====================

スマートフォン対応

====================*/

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

body,#wrap {
	font-size: 12px;
	margin: 0 auto;
	padding: 0;
}

.pc-only {
	display: none;
}

.sp-only {
	display: block;
}

header,nav,main,footer,.footer_p {
	display: block;
	margin: 0 auto;	
	padding: 0;
	min-width: 280px;
}



/*====================

ハンバーガーメニュー

====================*/
header {
	width: 100%;
	margin: 0;
	padding: 0;
	background-image: none;
}

.hamburger {
	display : block;
	position: fixed;
	z-index : 3;
	right : 10px;
	top : 10px;
	width : 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
	z-index: 9999;
}

.hamburger span {
	display : block;
	position: absolute;
	width : 30px;
	height: 3px ;
	left: 6px;
	background : #666;
	-webkit-transition: 0.5s all;
	-moz-transition : 0.5s all;
	transition: 0.5s all;
}

.hamburger span:nth-child(1) {
	top: 10px;
}

.hamburger span:nth-child(2) {
	top: 20px;
}

.hamburger span:nth-child(3) {
	top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top : 16px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform : rotate(-45deg);
	transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
	left: 60%;
	opacity: 0;
	-webkit-animation: active-btn17-bar02 .8s forwards;
	animation: active-hamburger-bar02 .8s forwards;
}

@-webkit-keyframes active-hamburger-bar02 {
100% {
	height: 0;
}
}
@keyframes active-hamburger-bar02 {
100% {
	height: 0;
}
}
.hamburger.active span:nth-child(3) {
	top: 16px;
	-webkit-transform: rotate(45deg);
	-moz-transform : rotate(45deg);
	transform: rotate(45deg);
}

.hamburger::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: none;
	content: '';
	width: 80px;
	height: 80px;
	margin: -45px 0 0 -43px;
	border-radius: 50%;
	border: none;
	transition: all .75s;
}

.hamburger.active::after {
	border: 2px solid #666;
}

nav.globalMenuPC{
	display: block;
	position: fixed;
	z-index : 9998;
	top: 0;
	left : 0;
	color: #4d4d4d;
	background: #fff;
	transform: translateX(100%);
	transition: all 0.6s;
	width: 100%;
	height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	min-width: 300px;
  }
  
  nav.globalMenuPC ul{
    display: block;
    background: #fff;
    z-index : 9998;
	padding-bottom: 6px;
  }
  
  nav.globalMenuPC li.has-child ul,
  nav.globalMenuPC li.has-child ul ul{
    position: relative;
    left:0;
    top:0;
    width:100%;
    visibility:visible;/*JSで制御するため一旦表示*/
    opacity:1;/*JSで制御するため一旦表示*/
    display: block;/*0413_JSのslidetoggleで表示させるため非表示に*/
    transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
  
nav.globalMenuPC ul li a{
  border-bottom:1px solid #ccc;
}

nav.globalMenuPC ul li:last-child a {
	border: none;
}


nav.globalMenuPC li.has-child ul li a {
  padding-left: 30px;
  margin: 0;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuPC.active {
	transform: translateX(0%);
}

.tel-btn {
    background: #f6ae54;
    color: #000 !important;
    padding: 0 20px !important;
    border-radius: 100px;
    font-family: Futura, 'Century Gothic', sans-serif;
}

nav.globalMenuPC ul li img {
    height: 50px;
    margin: 0;
    padding: 0;
}

.icon-line {
	padding: 10px 0 !important;
}


/*====================

main(768px)

fv(768px)

====================*/

.fv {
	width: 100%;
	height: 60vh;
	margin: 0 auto;
	text-align: center;
	position: relative;
	padding: 0;
}

h1 {
	display: block;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Rokkitt', serif;
    padding: 40px 0;
	text-align: center;
}


.fv-img {
	display: block;
	margin: 0 auto;
	width: 90%;
	height: 100%;
	object-fit: cover;
	object-position: 100% 60%;
    border: 1px solid #000;
    border-radius: 20px;
}

h2 {
	display: inline-block;
	width: auto;
	white-space: nowrap;
	background: #fff;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 20px;
	padding: 0.4em 1em;

	position: absolute;
	bottom: 6%;
    left: 50%;
}

/*====================

Service contents(768px)

====================*/
.service-contents {
	width: 90%;
	padding: 50px 0;
	margin: 0 auto;
	text-align: center;
	background-image: url(../img/top-001.png);
	background-repeat: no-repeat;
	background-position: left 16px;
	background-size: 60px;
}

.service-contents2 {
	width: 90%;
	padding: 50px 0;
	margin: 0 auto;
	text-align: center;
	background-image: url(../img/about/tool-001.png);
	background-repeat: no-repeat;
	background-position: left 16px;
	background-size: 60px;
}

h3 {	
    display: inline-block;
	font-size: 28px;
	font-weight: 900;
	font-family: 'Rokkitt', serif;
	border-bottom: 3px dashed #000;
	padding: 0 0 4px;
}

h3.h3-w {
	display: inline-block;
	font-size: 28px;
	font-weight: 900;
	font-family: 'Rokkitt', serif;
	border-bottom: 3px dashed #fff;
	padding: 0 0 4px;
}

h4 {
	font-size: 16px;
	font-weight: bold;
	margin: 0.5em auto 1.5em;
}

p {
	font-size: 12px;
	line-height: 20px;
	font-weight: 500;
}

.list-box {
	display: flex;
	flex-direction: column;
	margin: 10px auto;
}

.img-list {
	display: flex;
	flex-direction: column;
	max-width: 600px;
	width: 90%;
	margin: 30px auto 0;
}

.list-text {
	width: 100%;
	color: #fff;
	background: #000;
	margin: -1px 0 0 0;
	padding: 0.4em 0;
	font-size: 14px;
	font-weight: bold;
}

/*====================

Message(768px)

====================*/

.message {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	background-image: url(../img/bg-wood.jpg);
	background-size: cover;
	text-align: center;
	color: #fff;
	position: relative;
}

.message-in {
	max-width: 700px;
	width: 90%;
	padding: 50px 0;
	margin: 0 auto;
}

.message-box {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}

.mesage-text,
.mesage-text2,
.message-img,
.message-img2 {
	width: 100%;
}

.mesage-text{
	font-size: 12px;
	line-height: 24px;
	text-align: left;	order: 2;
}

.message-img {
	padding: 16px 0;
	order: 1;
}

.message-img img,
.message-img2 img {
	width: 100%;
}

.mesage-text2 {
	font-size: 12px;
	line-height: 24px;
	text-align: left;
	padding-left: 0;
	padding-top: 0;
}

.message-img2 {
	padding: 16px 0;
}


/*====================

Instagram(768px)

====================*/
.ig {
	width: 90%;
	max-width: 1100px;
	padding: 50px 0;
	margin: 0 auto;
	text-align: center;
}

.ig-icon {
	width: 30px;
	height: 30px;
	margin-top: -10px;
}

.ig-box {
	display: flex;
	flex-direction: column;
	padding-top: 0;
}

.insta_list{
	text-align: center;
	margin: 0 auto;
	width: 100%;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.insta_list li {
	width: 50%;	
	box-sizing: border-box;
    padding: 10px;
}

.insta_list img{
    width: 100%;
	border: 4px solid #000;
}


/*====================

Information(768px)

====================*/
.info {
	width: 90%;
	max-width: 700px;
	padding: 50px 0;
	margin: 0 auto;
	text-align: center;
}

.info-box {
	display: flex;
	flex-direction: column;
}

table {
	width: 100%;
}

th {
	width: 100%;
	display: block;
	margin: 20px 0 10px 0;
}

span {
	background: #000;
	color:#fff;
	padding: 0.2em 1em;
	font-size: 14px;
}

td {
	width: 100%;
	display: block;
	text-align: left;
	font-weight: 500;
	font-size: 12px;
	line-height: 20px;
	padding: 0;
}

td.td-area {
	font-weight: 900;
}

td.td-info {
	padding-bottom: 14px;
}

.map {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}



/*====================

CTA(768px)

====================*/

.cta {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 30px 0 70px;
	background-image: url(../img/bg-wood-normal.jpg);
	background-size: cover;
	text-align: center;
	color: #fff;
	position: relative;
}

.cta-img {
	position: absolute;
	bottom: 0;
	right: 20px;
	width: 100px;
}

.cta-title {
	display: flex;
	align-items:flex-end;
	justify-content: center;
	margin-bottom: 20px;
}

.cta-title img {
	width: 24px;
}

h5 {
	font-size: 14px;
	line-height: 24px;
}

.btn-list {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/*ボタン*/
.Button {
	overflow: hidden;
	width: 24em;
	height: 40px;
    margin: 10px auto;
	padding: 0;
}
.Button a {
	display: block;
	position: relative;
	z-index: 100;
	text-align:center;
	background: #000;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	line-height: 40px;
	text-decoration:none;
	padding-left: 30px;
}







/*====================

footer(768px)

====================*/
footer{
	width:100%;
	background: #000;
}

footer .footer-inner {
	width: 90%;
	margin: 0 auto;
	padding: 30px 0;
	display: flex;
	flex-direction: column;
}

.footer-left {
	width: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.footer-name {
	display: inline-block;
	font-size: 22px;
	font-weight: 900;
	font-family: 'Rokkitt', serif;
	padding: 0 0 4px;
	color: #fff;
}

.footer-tel {
	color: #fff;
    font-size: 14px;
    padding: 0;
    font-family: Futura, 'Century Gothic', sans-serif;
    margin-top: 10px;
    letter-spacing: 0.1em;
}

.icon-list {
	display: flex; 
	margin: 0 auto;
}

.footer-icon {
	margin: 16px 16px 0 0;
	width: 34px;
	display: block;
}

.footer-icon img {
	width: 100%;
}




.footer-right {
	width: 100%;
	display: flex;
	min-width: 280px;
	text-align: center;
}

.icon-tool {
	width: 10px;
	margin: 20px 0;
}

footer ul {
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content:space-between;
}

.footer-li-child {
	margin-top: 30px;
}

footer ul li a {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

footer ul li ul {
	display: flex;
	flex-direction: column;
}

footer ul li ul li a {
	font-size: 11px;
	font-weight: normal;
	color: #fff;
	padding-left: 0;
}

.footer_p {
	width: 100%;
	font-size: 16px;
	text-align: center;
	background-image: url(../img/bg.jpg);
	padding: 20px;
}

.footer_p p {
	font-size: 11px;
	line-height: 20px;
}








/*====================

下層共通(768px)

====================*/

.ul-fv {
    display: block;
    margin: 0 auto;
	padding: 60px 0 0;
    width: 90%;
    max-width: 700px;
    height: auto;
    position: relative;
}

.ul-fv .ul-h2 {
    position: absolute;
    bottom: 10%;
    width: 90%;
    text-align: center;
	font-size: 16px;
}

/*====================

aboutページ

====================*/

.about-bg {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 50px 0;
	background-image: url(../img/bg-wood-normal.jpg);
	background-size: cover;
	text-align: center;
	color: #fff;
	position: relative;
}

.about-in {
	max-width: 700px;
	width: 90%;
	padding: 0;
	margin: 0 auto;
}

.about-bg-icon {
	background-image: url(../img/about/tool-002.png);
	background-repeat: no-repeat;
    background-position: top right;
    background-size: 100px;
}

.company-info {
	background: #fff;
	color: #000;
	width: 90%;
	margin: 0 auto;
	display: block;
}

.company-info tr {
	background-image: linear-gradient(to right, #000, #000 6px, transparent 6px, transparent 12px);
	background-size: 10px 1px;          /* グラデーションの幅・高さを指定 */
	background-position: left bottom;  /* 背景の開始位置を指定 */
	background-repeat: repeat-x;       /* 横向きにのみ繰り返す */

	height: 32px;
	line-height: 32px;
}

.company-info tr:last-child {
	background-image: none;
}

.company-info th,
.company-info td {
	height: auto;
	line-height: 22px;
	vertical-align: middle;
	font-size: 12px;
	padding: 0 1.5em;
}

.company-info th {
	text-align: left;
	width: 100%;
	font-weight: 700;
	display: block;
	margin: 10px 0 0 0;
}

.message-img iframe {
	width: 90%;
	margin-top: 20px;
}

.text-big {
	display: block;
	margin: 0 0 0.5em;
	padding: 0;
	font-size: 20px;
	font-weight: bold;
	background: none;
}

.w-border {
	border-bottom: 2px solid #fff;
	margin: 20px 0;
}

.margin-btn30 {
	margin-top: 30px;
}

.about-img {
	width: 80%;
	min-width: 200px;
	padding: 0;
	margin: 30px auto 0;
}

.about-img img {
	width: 100%;
}

.about-text {
    width: auto;
    text-align: left;
}


/*====================

contactページ

====================*/
.service-contents3 {
    width: 90%;
    padding: 30px 0;
    margin: 0 auto;
    text-align: center;
    background-image: url(../img/contact/tool-001.png);
    background-repeat: no-repeat;
	background-position: left 16px;
    background-size: 40px;
}

.submit-btn {
	display: block;
    position: relative;
    z-index: 100;
    text-align: center;
    background: #000;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 50px;
    text-decoration: none;
    padding-left: 30px;
	overflow: hidden;
    width: 10em;
    height: 50px;
    margin: 0 auto;
    padding: 0;
	transition: 0.5s;
}

.submit-btn:hover {	
    background: #999;
    color: #000;
}

.submit-btn::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    width: 20px;
    height: 20px;
    margin-top: -8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: #fff;
}

.submit-btn::after {
	display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 27px;
    width: 0;
    height: 0;
    margin-top: -4px;
    border: 7px solid transparent;
    border-left: 9px solid #595857;
    transition: 0.5s;
}

#contact-form {
	background-image: url(../img/bg-wood-normal.jpg);
	padding: 30px 0;
}

.tb_contact {
	display:block;
	background: #fff;
	width: 85%;
	margin: 0 auto;
	padding: 20px;
}

span.tb_item {
	font-size: 16px;
	font-weight: bold;
	background: none;
	color: #000;
	padding: 0;
}

/* 入力エリア */
input[type="text"], input[type="email"],input[type="tel"]{
	width: 100%;
    line-height: 33px;
    border: 1px solid #000;
    margin: 2px 0 20px 0;
    font-size: 14px;
    border-radius: 4px;
    background-color: #fff;
    padding: 0.2em 1em;
}


/* テキストエリア */
textarea{
	width:100%;
	height:148px;
	border:1px solid #000;
    margin: 2px 0 20px 0;
	font-size:16px;
	border-radius: 4px;
	background-color: #fff;
    padding: 0.2em 1em;
}

.page-info {
    width: 90%;
    margin: 0 auto;
}

.page-info p {
	text-align: center;
	font-size: 14px;
	color: #fff;
	margin: 16px 0;
}

.page-info2 p {
	text-align: center;
	font-size: 12px;
	color: #000;
	width: 90%;
    margin: 0 auto;
	padding: 20px 0;
}


.btn_flex {
	display: flex;
	flex-direction: column;
    justify-content: center;
}

input[type="button"],
input[type="submit"] {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	background: #000;
    margin: 10px auto;
    padding: 0.5em 4em;
}

.contact-bottom {
	width: 100%;
	height: 150px;
	position: relative;
}

.contact-bottom img {
	position: absolute;
	bottom: -10px;
	right: 200px;
	width: 150px;
}


}
/*========レスポンシブ終了========*/
