﻿@charset "UTF-8";


/* 基本レイアウト ここから↓ */
* {
	margin: 0;
	padding: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body{
	font-size: 1.6rem;/* 16px*/
	line-height: 2;
	width: 100%;
	color: #221613;
	background-color: #fff;
	/* フォントの種類を指定 */
	font-family: -apple-system, BlinkMacSystemFont, 游ゴシック, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	/* 字間(プロポーショナルメトリクス)を指定 */
	font-feature-settings: "palt";
	display: inline;
}
li {
	list-style:none;
}
ul, ol {
	padding:0;
	margin:0;
}
a {	
	color: #221613;
	text-decoration: none;
}
a:hover {
	/* filter: saturate(180%) opacity(70%);
	transition-duration: 0.5s; */
}
a img:hover {
	filter: opacity(80%);
}
a[href*="tel"] {
	pointer-events: auto;
}
img {
	max-width: 100%;
    height: auto;
	vertical-align: middle;
	display: block;
	margin: auto;
}
img.widthmax {
	/* width: 100%; */
}
.hidden {
	position: absolute;
	top: -9999px;
	left: -9999px;
  }
.sp_only {
	display: block;
}
.pc_only {
	display: none;
}


@media screen and (min-width: 960px) {
	.sp_only {
		display: none;
	}
	.pc_only {
		display: block;
	}
	a[href*="tel"] {
		pointer-events: none;
	}
}
.bold {
	font-weight: bold;
}
/* webfont */
.ff-Rodin-m {
	font-family: "FOT-ロダン Pro M";
}
.ff-Rodin-db {
	font-family: "FOT-ロダン Pro DB";
}
.ff-Rodin-b {
	font-family: "FOT-ロダン Pro B";
}
.ff-Matisse-db {
	font-family: "FOT-マティス Pro DB";
}
.ff-Arial-b {
	font-family: "ArialMTPro-Bold";
}
.ff-Seurat-db {
	font-family: "FOT-スーラ Pro DB";
}
.ff-Shuei-b {
	font-family: "秀英丸ゴシック B";
}
.ff-Tsuku-m {
	font-family: "FOT-筑紫B丸ゴシック Std M";
}
.ff-Tsuku-d {
	font-family: "FOT-筑紫B丸ゴシック Std D";
}
.ff-Tsuku-b {
	font-family: "FOT-筑紫B丸ゴシック Std B";
}
.ff-Tsuku-e {
	font-family: "FOT-筑紫B丸ゴシック Std E";
}

/* .ff-helvetica {
	font-family: "HelveticaLTPro-Bold";
} */
/* 文字色 */
.c-wh {
	color: #fff;
}
.c-bl {
	color: #114b81;
}

/* 背景色 */
.bk-cream {
	background-color: #fff3e3;
	max-width: initial;
	padding: 0;
}
.bk-cream > div {
	max-width: 1000px;
	padding: 0 3%;
	margin: auto;
}

/* フェードインアニメ start */
.fadeIn {
	animation-name: fadeInAnime;
	animation-fill-mode:backwards;
	animation-duration:3s;
	/* animation-iteration-count:infinite; */
	animation-timing-function:ease;
	animation-delay: 0.5s;
	animation-direction:normal;
}
@keyframes fadeInAnime{
	0% {
	opacity: 0;
	}

	100% {
	opacity: 1;
	}
}
/* フェードインアニメ end */

/* 基本レイアウト ここまで↑ */



/*------------------------------

	ヘッダーここから

------------------------------*/
header {
	background: #fff;
	width: 100%;
	position: fixed;
	z-index: 10;
}
header a {
	/* color: #fff; */
}
#header_box {
	padding: 0 0 0 3%;
	display: flex;
	align-items: center; /* 垂直中央寄せ */
	justify-content: space-between;
	/* background-color:burlywood; */
}


#logo {
	/* display: flex; */
	/* align-items: center; 垂直中央寄せ */
	/* background-color:aliceblue; */
}
#logo h1 img {
	width: 180px;
	padding-top: 10px;
	padding-bottom: 10px;
}



#header_box nav{
	font-weight: bold;
}
  /*------------------------------
  
	ここから下がハンバーガーメニュー
	に関するCSS
  
  ------------------------------*/
	
  /* チェックボックスは非表示に */
  .drawer-hidden {
	display: none;
  }

  .drawer {
	/* align-self: center; 垂直方向中央寄せ */
	align-self: stretch; /* 垂直方向伸ばす */
	position: relative; /* 親要素？ */
	background-color: #905f34;
	border-radius: 5px;
	margin-top: 1%;
	margin-right: 1%;
  }

  /* ハンバーガーアイコンの設置スペース */
  .drawer-open {
	display: flex;
	height: 35px;
	width: 60px;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 100;/* 重なり順を一番上に */
	cursor: pointer;
	padding-top: 15px;
  }
  
  /* ハンバーガーメニューのアイコン */
  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 20px;
	border-radius: 3px;
	/* background: #231815; */
	background: #fff;
	/* transition: 0.5s; */
	transition-duration: 0.5s !important; /* ★スマホで動かない */
	position: absolute;
  }
  
  /* 三本線のうち一番上の棒の位置調整 */
  .drawer-open span:before {
	bottom: 8px;
  }
  
  /* 三本線のうち一番下の棒の位置調整 */
  .drawer-open span:after {
	top: 8px;
  }
  
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer-check:checked ~ .drawer-open span {
	background: rgba(255, 255, 255, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer-check:checked ~ .drawer-open span::before {
	bottom: 0;
	transform: rotate(45deg);
  }
  
  #drawer-check:checked ~ .drawer-open span::after {
	top: 0;
	transform: rotate(-45deg);
  }
	
  /* メニューのデザイン*/
  .drawer-content {
	width: 100%;
	/* width: 50%; */
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%; /* メニューを画面の外に飛ばす */
	z-index: 99;
	background: #905f34;
	/* opacity:0.8; */
	transition-duration: 0.5s !important; /* ★スマホで動かない */


	/* position: absolute;
    z-index: 100; 
    top: 68px;
	height: calc( 100vh - 52px);
	*/

	
  }
  
  /* アイコンがクリックされたらメニューを表示 */
  #drawer-check:checked ~ .drawer-content {
	left: 0;/* メニューを画面に入れる */
	/* left: 50%; *//* メニューを画面に入れる */
  }


.sp-menu-icon-text {
	color: #fff;
	font-size: 0.7em;
	text-align: center;
}

ul.drawer-list {
	margin: 50px;
	font-size: 1.2em;
}
ul.drawer-list li a {
	display: block;
	padding: 0.5em 0;
	color: #fff;
}
.sp-menu-border {
	margin-right: 50px;
	
}
#sp-menu-home {
	font-size: 1.5em;
	border-bottom: 1px solid #fff;
	color: #fff;
}


#pcnav {
	display: none; /* PC用メニューを非表示に */
}

	/*------------------------------

		PC用メニューここから

	------------------------------*/
	@media screen and (min-width: 960px) {
	
		#header_box {
			/* display: block; 横並び解除　*/
			max-width: 1000px;
			margin: auto;
			padding-right: 3%;
		}
		#logo h1 img {
			width: 230px;
		}
		nav#pcnav {
			/* display: block;	メニューはロゴの下の段に */
			display: inline-block;
			width: 100%;

			max-width: 1000px;
			padding: 0 3%;

			margin: auto;
			align-self: center;/*  垂直方向中央寄せ */
			font-size: 1em;
			/* background-color: #ccc; */
			padding-top: 0.5em;
			padding-bottom: 0.5em;
			
		}
		ul#pcnavul {
			display: flex;
			justify-content: space-between;
			/* justify-content: flex-end; PC用メニュー右寄せ */
			
			/* max-width: 1000px;
			padding: 0 3%;
			margin: auto; */
			/* background:darkseagreen; */
		}
		ul#pcnavul li {
			/* margin-left: 3em; */
		}
		ul#pcnavul a {
			/* color: #063e8d; */
			/* padding: 0 0.2em; */
		}
		ul#pcnavul a:hover {
			/* border-bottom: 2px solid #063e8d; */
		}
		/* PCメニュー下線アニメ start */
		ul#pcnavul a {
			padding-bottom: 5px;
			position: relative;
		}
		ul#pcnavul a::before {
			background: #e6841f;
			content: '';
			width: 100%;
			height: 4px;
			position: absolute;
			left: 0;
			bottom: 0;
			margin: auto;
			transform-origin: right top;
			transform: scale(0, 1);
			transition: transform .3s;
		}
		ul#pcnavul a:hover::before {
			transform-origin: left top;
			transform: scale(1, 1);
		}
		/* PCメニュー下線アニメ end*/

		div.drawer {
			display: none; /* スマホ用メニューを非表示に */
		}


		/* PC用 TEL・メニュー start */
		#pc-tel-menu {
			/* background-color:aquamarine; */
			/* width: 57%; */
		}
		#pc-tel { /*PC用 TEL */
			padding-top: 1%;
			padding-bottom: 1%;
			/* background-color:antiquewhite; */
			display: flex;
			align-items: flex-end;
		}
		#pc-tel img {
			width: 250px;
			display: inline;
		}
		#pc-tel p {
			font-weight: bold;
			margin-left: 30px;
			font-size: 0.9em;
			/* line-height: 1.0em; */
		}
		/* PC用 TEL・メニュー end */
	}
	/*------------------------------

		PC用メニューここまで

	------------------------------*/





/*------------------------------

	ヘッダーここまで

------------------------------*/
/*------------------------------

	メイン部分ここから

------------------------------*/
main {
	padding-top: 1%;	
}
/* main video {
	width: 100%;
	display: block;
} */
main > section {
	max-width: 1000px;
	padding: 0 3%;
	margin: auto;
	margin-top: 30px;	
}
@media screen and (min-width: 960px) {
	main > section {
		margin-top: 70px;
	}
}


/* TOPイメージ・PCメニュー start */
main > section#top-img {
	max-width: none;
	padding: 0;
	margin-top: 0;
	text-align: center; /* PC用メニュー中央寄せ */
}
@media screen and (min-width: 960px) {
	
}
/* TOPイメージ・PCメニュー end */
/* TEL・インスタボタン start */
#btn-tel-insta {
	margin-top: 20px;
}
@media screen and (min-width: 960px) {
	#btn-tel-insta {
		margin-top: 40px;
	}
}
.btn-tel-sp {
	padding: 0 10% 10% 10%;
}
.btn-insta-pc {
	padding: 0 10%;
}
/* TEL・インスタボタン end */
/* サービス start */
#service {
	text-align: center;
}
#service h3 {
	/* font-size: 1.6em; */
	width: 250px;
	margin: auto;
	color: #5f4c3f;
	padding-right: 30px;
	background-image: url(../img/icon-orange.jpg);
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: right;
}
#service span {
	color: #de5d46;
}
@media screen and (min-width: 960px) {
	#service h3 {
		font-size: 1.7em;
		width: 340px;
		padding-right: 40px;
	}
}




#service > ul {
	color: #5f4c3f;
	width: 90%;
	margin: 2em auto 0 auto;
}
#service > ul h4 {
	color: #de5d46;
	font-size: 1.2em;
	border: 1px solid #de5d46;
	border-radius: 10px;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
#service-h4-box {
	line-height: 1em;
	
}
#service > ul h4#service-h4-box {
	/* font-size: 1em; */
}

#service > ul li > ul {
	text-align: left;
	margin: 1em 0 2.5em 0;
}
#service > ul li > ul li {
	list-style-type: disc;
	margin-left: 3em;
}
@media screen and (min-width: 960px) {
	#service > ul h4 {
		font-size: 1.6em;
	}
	#service > ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
	}
	#service > ul > li {
		width: 40%;
	}
	#service > ul li > ul li {
		font-size: 1.1em;
	}
}

#service img {
	width: 80%;
}
/* サービス end */

/* ポリシー　start */
main > section#policy{
	max-width: none;
	margin-top: 3em;
	background-color: #e6841f;
	color: #fff;
	text-align: center;	
	padding-top: 3em;
	padding-bottom: 3em;
	background-image: url(../img/wave-sp.png);
	background-repeat: no-repeat;
	background-position: top;
	background-size: 100%;
}
#policy h3 {
	font-size: 1.3em;
}
#policy h4 {
	font-size: 1.2em;
}
@media screen and (min-width: 960px) {
	main > section#policy{
		background-image: url(../img/wave-pc.png);
	}
	#policy h3 {
		font-size: 1.8em;
	}
	#policy h4 {
		font-size: 1.5em;
	}
}

#policy ul {
	padding: 0 0.5em;
	max-width: 1000px;
	margin: auto;
}
#policy ul li {
	margin-top: 2em;
}
#policy ul li p {
	text-align: left;
	/* width: 90%; */
	margin: auto;
	line-height: 1.7em;
	margin-top: 1em;
}
@media screen and (min-width: 960px) {
	#policy ul {
		display: flex;
	}
	#policy ul li {
		width: 33%;
		padding: 0 4%;
		border-left: 2px dashed #fff;
	}
	#policy ul li:first-child {
		border-left: none;
	}
}
/* ポリシー end */

/* アバウト start */
#about {
	text-align: center;
}
#about h3 {
	width: 250px;
	margin: auto;
	color: #5f4c3f;
	padding-left: 30px;
	background-image: url(../img/icon-orange-2.jpg);
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: left;
	line-height: 1.3em;
}
#about h3 span {
	display: block;
}
#about span.about-e, #blog span.blog-e, #entry span.blog-e {
	color: #de5d46;
}
@media screen and (min-width: 960px) {
	#about h3 {
		padding-left: 50px;
		background-size: 50px;
		padding-top: 0.5em;
		padding-bottom: 0.5em;

		font-size: 1.7em;
		width: 570px;
	}
	#about h3 span {
		display: inline;
	}
}

#about h4 {
	color: #e6841f;
	font-size: 1.2em;
}
#about ul li {
	background-color: #f8e6bc;
	border-radius: 10px;
	padding: 0.5em;
	margin-top: 2em;
}
#about ul p {
	background-color: #fff;
	border-radius: 10px;
	color: #5f4c3f;
	padding: 1em;
	margin-top: 0.5em;
	text-align: left;
	line-height: 1.6em;
}
@media screen and (min-width: 960px) {
	#about ul {
		max-width: 800px;
		margin: auto;
	}
	#about ul li {
		display: flex;
		justify-content: space-between;
		align-items: center; /* 垂直中央寄せ */
	}
	#about ul li h4 {
		width: 17%;
		font-size: 1.4em;
		line-height: 1.4em;
	}
	#about ul li h4 span {
		display: block;
	}
	#about ul li p {
		width: 82%;
		margin-top: 0;
	}
}
/* アバウト end */
/* 事務所情報 start */
#info {
	text-align: center;
	background-color: #f0e7d9;
	max-width: none;
	padding-top: 3em;
	/* padding-bottom: 3em; */
	color: #5f4c3f;
}
#info section {
	max-width: 1000px;
	margin: 3em auto 0;
}
#info h3 {
	margin: auto;
	color: #5f4c3f;
}
#info span.info-e {
	color: #de5d46;
}
#info h4 {
	font-size: 1.3em;
}
#info-how, #info-price {
	font-size: 1.3em;
	line-height: 1.2em;
	padding: 0.4em 0.5em 1em 0.5em;
	
	background-size: 100%;
	background-repeat: no-repeat;
	max-width: 380px;
	margin: auto;
}
#info-how {
	background-image: url(../img/fukidashi-2.png);
}
#info-how span {
	display: block;
}
#info-price {
	background-image: url(../img/fukidashi.png);
}
@media screen and (min-width: 960px) {
	#info h3 {
		font-size: 1.7em;
		width: 570px;
	}
	#info h3 span {
		display: inline;
	}
	#info h4 {
		font-size: 1.7em;
	}
	#info-how, #info-price {
		max-width: 800px;
		margin: auto;
		font-size: 1.7em;
		padding: 1em 0.5em 2em 0.5em;
		
		background-size: 100%;
		background-repeat: no-repeat;
	}
	#info-how {
		background-image: url(../img/fukidashi.png);
	}
	#info-how span {
		display: inline;
	}
}

#info ul {
	padding: 0 0.5em;
	max-width: 1000px;
	margin: auto;
}
#info ul li {
	margin-top: 1.5em;
}
#info ul li h4 {
	font-size: 1.5em;
}
#info ul li p {
	text-align: left;
	/* width: 90%; */
	margin: auto;
	line-height: 1.9em;
	margin-top: 0.5em;
}
@media screen and (min-width: 960px) {
	#info ul {
		display: flex;
	}
	#info ul li {
		width: 33%;
		padding: 0 4%;
		border-left: 2px dashed #b07d34;
	}
	#info ul li:first-child {
		border-left: none;
	}
}
#info h5 {
	margin-top: 1em;
	font-size: 1.1em;
	line-height: 1.3em;
}
.info-price-img {
	margin-top: 1em;
	width: 100%;
	max-width: 800px;
}
/* 料金画像とボタンの重なり start */
.relative {
	position: relative;
}
.absolute {
	position: absolute;
	width: 100%;
	max-width: 800px;
	bottom: 8%;
}
.absolute img {
	width: 40%;
	margin: 0;
}
/* 料金画像とボタンの重なり end */
@media screen and (min-width: 960px) {
	#info h5 {
		font-size: 1.3em;
	}
	#info h5 span {
		display: block;
	}
	.info-price-img {
		margin-top: 2em;
	}
	.absolute img {
		width: 60%;
		padding-left: 100px;
	}
}
/* 事務所情報 end */
/* 訪問範囲 start */
/* #area {
	text-align: center;
} */
main > section#area {
	width: 100%;
	max-width: none;
	margin-top: 3em;
	text-align: center;	
	padding: 0;
}
#area h3 {
	width: 150px;
	margin: auto;
	color: #5f4c3f;
	/* padding-right: 30px; */
	background-image: url(../img/icon-orange-3.jpg);
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: right;
	line-height: 1.3em;
}
#area h3 span {
	display: block;
}
#area span {
	color: #de5d46;
}
#area img {
	width: 100%;
	margin-top: 1.5em;
}
@media screen and (min-width: 960px) {
	#area h3 {
		/* padding-right: 50px; */
		background-size: 50px;
		padding-top: 0.5em;
		padding-bottom: 0.5em;

		font-size: 1.7em;
		width: 250px;
	}
	#area h3 span {
		display: inline;
	}
	#area img {
		margin-top: 2em;
		width: 100%;
		max-width: 800px;
	}
}

/* 訪問範囲 end */
/* ご利用者様の声 start */
main > section#voice {
	max-width: none;
	margin-top: 0;
	background-color: #f4d177;
	color: #5f4c3f;
	text-align: center;	
	padding-top: 3em;
	padding-bottom: 3em;
}
#voice h3 {
	font-size: 1.3em;
}
#voice span {
	color: #de5d46;
}
#voice h4 {
	font-size: 1.2em;
}
#voice img {
	width: 100%;
	max-width: 800px;
}
@media screen and (min-width: 960px) {
	main > section#voice{
		background-image: url(../img/wave-voice-pc.png);
		background-repeat: no-repeat;
		background-position: top;
		background-size: 100%;
		margin-top: 3em;
	}
	#voice h3 {
		font-size: 1.8em;
		margin-top: 1em;
	}
	#voice h4 {
		font-size: 1.5em;
	}
	
}
/* ご利用者様の声 end */

/* 代表挨拶 start */
main > section#greeting {
	max-width: none;
	margin-top: 3em;
	text-align: center;	
	padding: 0;
	border-bottom: 2px dashed #a18977;
}

/* 代表挨拶タイトル部分 start */
#greeting-title {
	color: #fff;
	background-image: url(../img/aisatsu-t-sp.png);
	background-repeat: no-repeat;
	background-position: top;
	background-size: 100%;
	padding: 5% 0 1% 0;
}
#greeting-title h3 {
	font-size: 1.3em;
	line-height: 1.2em;
}
@media screen and (min-width: 960px) {
	main > section#greeting {
		margin-top: 5em;
	}
	#greeting-title {
		background-image: url(../img/aisatsu-t-pc.png);
	}
	#greeting-title h3 {
		font-size: 1.8em;
	}
}

#greeting h4 {
	font-size: 1.1em;
	line-height: 1em;
	color: #de5d46;
	padding: 3% 2%;
}
@media screen and (min-width: 960px) {
	#greeting h4 {
		font-size: 1.7em;
		padding: 1% 3% 1% 3%;
	}
}
/* 代表挨拶タイトル部分 end */

/* 代表挨拶 各人部分 start */
#greeting-s {
	background-color: #de5d46;
	color: #fff;
	background-image: url(../img/icon-orange-4.png);
	background-repeat: no-repeat;
	background-position: 5% bottom;
	background-size: 20px;
}
#greeting-y {
	color: #5f4c3f;
	margin-top: 2em;
}
#greeting-y h3 {
	font-size: 1.3em;
	color: #de5d46;
}
#greeting-y span {
	color: #de5d46;
}
#greeting-y .greeting-box span {
	color: #5f4c3f;
}
@media screen and (min-width: 960px) {
	#greeting-y h3 {
		font-size: 1.8em;
	}
}
/* 代表挨拶 各人部分 end*/
/* 代表挨拶 共通flex部分 start */
.greeting-box {
	padding: 3% 3% 15% 3%;
}
.greeting-box figure img {
	width: 50%;
	max-width: 280px;
}
.greeting-box figcaption {
	font-size: 1.2em;
	line-height: 1.2em;
	margin-top: 0.5em;
}
.greeting-box figcaption span {
	display: block;
	font-size: 0.6em;
}
.greeting-box p {
	margin-top: 1.5em;
	text-align: left;
}
@media screen and (min-width: 960px) {
	#greeting-s {
		background-position: 10% bottom;
		background-size: 30px;
	}
	.greeting-box {
		padding: 3% 3% 5% 3%;
		max-width: 900px;
		display: flex;
		justify-content: space-between;
		margin: auto;
	}
	.greeting-box figure {
		width: 25%;
	}
	.greeting-box figure img {
		width: 100%;
	}
	.greeting-box p {
		width: 70%;
	}
	.greeting-box figcaption {
		font-size: 1.9em;
	}
	.greeting-box figcaption span {
		font-size: 0.5em;
	}
	.greeting-box p {
		margin-top: 0;
	}
}
/* 代表挨拶 共通flex部分 end */

/* 共通じゃなくなった修正 */
#sakamoto-y {
	text-align: left;
	max-width: 900px;
	margin: auto;
	padding: 3% 3% 10% 3%;
}
#sakamoto-y > div {
	text-align: right;
	margin-top: 2em;
	font-size: 1.2em;
	line-height: 1.2em;
}
#sakamoto-y > div span {
	color: #5f4c3f;
	display: block;
	font-size: 0.6em;
	margin-right: 0.5em;
}
@media screen and (min-width: 960px) {
	#sakamoto-y > div {
		font-size: 1.9em;
	}
	#sakamoto-y > div span {
		font-size: 0.5em;
		margin-right: 2em;
}
	}
}
/* 代表挨拶 end */

/* 求人 start */
main > section#job {
	max-width: none;
	margin-top: 3em;
	text-align: center;	
	padding: 0;
	color: #706f70;
	border-bottom: 2px dashed #a18977;
}
#job-box {
	max-width: 900px;
	padding: 0 3% 5% 3%;
	margin-left: auto;
	margin-right: auto;
}

#job h3 {
	font-size: 1.3em;
	color: #5f4c3f;
}
#job span.job-e {
	color: #de5d46;
}
#job h4 {
	margin-top: 1.5em;
	font-size: 1.1em;
}
#job h4 span {
	display: block;
}
@media screen and (min-width: 960px) {
	#job h3 {
		font-size: 1.8em;
	}
	#job h4 {
		font-size: 1.4em;
		text-align: left;
	}
	#job h4 span {
		display: inline;
	}
}

#job table {
	margin-top: 2em;
	text-align: left;
	border-collapse: collapse;     /* セルの線を重ねる */
	line-height: 1.4em;
}
#job table th {
	border-right: 1px solid #706f70;
	width: 5em;
	padding: 0.5em 0.5em 0.5em 0;
	/* padding-top: 0.5em;
	padding-right: 0.5em; */
	vertical-align: top;
	text-align: justify; /* 均等割り付け */
	text-align-last: justify; /* 均等割り付け */
}
#job table td {
	padding: 0.5em 0 0.5em 0.5em;
	/* padding-top: 0.5em;
    padding-left: 0.5em; */
}

#job p {
	text-align: left;
	margin-top: 2em;
	line-height: 1.5em;
}
#job img {
	margin-top: 2em;
}
/* 求人 end */

/* インスタ start */
#insta {
	text-align: center;
	margin-top: 3em;
}
#insta h3 {
	width: 200px;
	margin: auto;
}
/* #insta div {
	margin: 5%;
	max-width: 400px;
	margin-left: auto;
	margin-right:auto;
} */




ul.insta_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 5vw;
  }
  ul.insta_list li {
	list-style: none;
	width: 48%;
	min-width: 300px;
	margin-bottom: 1vw;
  }
  ul.insta_list li a p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
  }
  ul.insta_list li a p span {
	font-size: 120%;
  }
  

.insta-btn {
	color: #fff;
	background-color: dodgerblue;
	padding: 0.2em 0.5em;
	border-radius: 3px;
	font-weight: bold;
	margin-top: 1em;
}

/* インスタ end */

/* 住所 start */
#address {
	margin-top: 3em;
	width: 90%;
}
#address .btn-tel-sp {
    padding: 0;
	margin-top: 1.5em;
}
#address-txt {
	display: flex;
	margin-top: 2em;
	margin-bottom: 1em;
	font-size: 0.9em;
	line-height: 1.3em;
}
#address-txt-post {
	width: 7em;
	margin-right: 0.5em;
}
.address-number {
	font-size: 1.2em;
}
.address-number span {
	margin-left: 0.3em;
	font-size: 1.8em;
	line-height: 1.3em;
}
.address-mail {
	margin-top: 1em;
}
.address-mail, .address-time {
	margin-left: 2em;
	line-height: 1.5em;
}
#address-right {
	margin-top: 2.5em;
}
#address-right a img {
	width: 60%;
	max-width: 200px;
	margin-top: 1em;
}
@media screen and (min-width: 960px) {
	#address {
		margin-top: 5em;
		display: flex;
		justify-content: space-between;
	}
	#address-left {
		width: 35%;
	}
	#address-right {
		width: 55%;
	}
	#address-txt {
		margin-top: 3em;
		margin-bottom: 2em;
	}
	.address-mail {
		margin-top: 2em;
	}
	#address-txt, .address-number {
		margin-left: 1em;
	}
	.address-mail, .address-time {
		margin-left: 3em;
	}
	#address-right {
		margin-top: 0;
	}
}
/* 住所 end */

/* 予約・電話ボタン start */
main > section#yoyaku-tel {
	max-width: none;
	margin-top: 3em;
	background: #f1eee6;
	text-align: center;	
	padding-top: 3em;
	padding-bottom: 3em;
}

#yoyaku-tel span::before {
	content: '\f30b';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 0.5em;
}
@media screen and (min-width: 960px) {
	
}

/* 予約・電話ボタン end */


/* Google Mapを囲う要素 */
.map {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 75%; /* 比率を4:3に固定 */
}

/* Google Mapのiframe */
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ブログ start */
  #blog {
  padding-bottom: 50px;
	}
	#blog h3 {
	text-align: center;
	color: #5f4c3f;
	line-height: 1.3em;
	}
	#blog h3, #entry h3 {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	font-size: 1.4em;
	}
	#blog span.blog-e, #entry span.blog-e {
	display: block;
	text-align: center;
	padding-bottom: 20px;
	}
	#blog ul.new-entry a img {
	width: 100%;
	padding-bottom: 10px;
	}
	#blog ul.new-entry a time {
	color: #aaa;
	}
	#blog ul.new-entry a > div {
	padding-bottom: 20px;
	}
	#blog ul.new-entry a > span {
	color: #de5d46;
	}
	.new-entry p {
 	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	}
	.pager {
  padding-top: 30px;
	}
	.pager ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	}
	.pager ul li{
	text-align: center;
	width: 40px;
	}
	.entry-list li {
	padding-bottom: 40px;
	}
	#entry h3 {
	display: table;
	margin: 0 auto;
	color: #5f4c3f;
	line-height: 1.3em;
	}
	#entry time {
	display: block;
	text-align: right;
	color: #aaa;
	padding-bottom: 20px;
	}
	#entry img#fvImg {
	width: 100%;
	padding-bottom: 50px;
	}
	#entry p {
	padding-bottom: 20px;
	}
	#entry p img {
	width: 100%;
	}


@media screen and (min-width: 561px) {
	#blog ul.new-entry {
	display: flex;
	flex-wrap: wrap;
	}
	#blog ul.new-entry li {
	padding-bottom: 30px;
	}
	.object-fit-img {
  object-fit: cover;
  font-family: "object-fit: cover;";
  }
  #entry p {
	font-size: 1.2em;
	}
}

@media (min-width: 561px) and (max-width: 959px){
	#blog ul.new-entry li {
		width: 48%;
		margin-right: 4%;
		padding-bottom: 50px;
	}
	#blog ul.new-entry li:nth-child(2n) {
		margin-right: 0;
	}
	#blog ul.new-entry li:nth-last-child(-n+2) {
		padding-bottom: 0;
	}
	#blog ul.new-entry a img {
	height: 120px;
	}
}

@media screen and (min-width: 960px) {
	#blog h3, #entry h3 {
	font-size: 1.7em;
	}
	#blog span.blog-e {
	padding-bottom: 40px;
	}
	#blog ul.new-entry li {
	width: 32%;
	margin-right: 2%;
	}
	#blog ul.new-entry li:nth-child(3n) {
		margin-right: 0;
	}
	#blog ul.new-entry li:nth-last-child(-n+3) {
		padding-bottom: 0;
	}
	#blog ul.new-entry a img {
	height: 150px;
	}
	#entry p {
	padding-bottom: 30px;
	}
}
/* ブログ end */

/*------------------------------

	メイン部分ここまで

------------------------------*/

/* ページ上部へ戻るボタン ここから */
.pagetop {
	height: 40px;
	width: 40px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: #fff;
	/* border: solid 2px #000; */
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 2;
	cursor: pointer;
}
/* ページ上部へ戻るボタン ここまで */

/*------------------------------

	フッター部分ここから

------------------------------*/

footer {
	background-color: #905f34;
	color: #fff;
	text-align: center;
	padding: 1em 3% 0.5em 3%;
	margin-top: 3em;
	background-image: url(../img/wave-2-sp.png);
	background-repeat: no-repeat;
	background-position: top;
	background-size: 100%;
}

@media screen and (min-width: 960px) {
	footer {
		margin-top: 5em;
		background-image: url(../img/wave-2-pc.png);
	}
}
#copyright {
	font-size: 0.7em;
}