	@charset "UTF-8";
	html {
		scroll-behavior: smooth;
		text-decoration: none;		
		font-weight: 400;
		font-style: normal;
	}
	body {
		color: #4A3D38;
		font-family: "YakuHanJP", "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
		font-size: 16px;
		letter-spacing: 0.3px;
		line-height: 1.3em;
		width: 100%;
	}
	.wrap {
		max-width: 960px;
		margin: auto;
		padding: 0 40px;
	}
	@media screen and (max-width: 979px) {
		.wrap {
			max-width: auto;
			padding:0 20px;
		}
	}
	#about {
		padding: 100px 0;
	}
	@media screen and (max-width: 979px) {
		#about {
			padding: 60px 20px;
		}
	}
	h1 {
		color: #8c6d62;
		font-size: 2.986rem;
	}
	h2 {
		
		font-size: 1.2rem;
	}
	h3 {
		color: #8c6d62;
		font-size: 2.488rem;
		font-weight: 500;
	}
	h4 {
		color: #8c6d62;
		font-size: 1.44rem;
		font-family: "poppins", sans-serif;
		margin: 20px 0 0 0;
	}
	h5 {
		color: #8c6d62;
		font-size: 1.44rem;
		line-height: 1.3em;
		
	}
	p {
		font-size:1rem;
	}
	@media screen and (max-width: 979px) {
		h1 {
			font-size: 2.488rem;
			line-height: 1.3em;
		}
		h2 {
			font-size: 1rem;
		}
	}
	@media screen and (max-width: 780px) {
		.br {
			display: block;
		}
	}
	a {
		text-decoration: none;
	}
	.text-color {
		color: #e0808b;
		--text-color: #e0808b;
		display: inline-block;
	}
	.wrap__inner {
			width: 100%;
			animation: a;
			margin: auto;
	}
	a {
		color: #4A3D38;
		transition: 0.3s;
		text-decoration: none!important;
	}
	a:hover {
		opacity: 0.6;
	}
	
	/* header
	================================== */
	header {
	    position: sticky;
	    top: 0;
	    z-index: 99999;
	    padding: 10px 0 0 0;
	}
	.btn_header {
		background: #8c6d62;
		color: #fff;
		border-radius: 30vw;
		padding: 5px 10px;
	}
	
	header .header_inner {
	  display: flex;
	  justify-content: flex-end;
	  position: relative;
	  margin: 25px 50px;
	  align-items: center;
	}
	header .header_inner .logo {
	  position: absolute;
	  left: 0;
	  top: 0;
	  z-index: 99999;
	}
	.logo a {
		font-family: "poppins", sans-serif;
	}
	header .header_inner .logo a {
	  display: flex;
	  justify-content: flex-start;
	  align-items: center;
	  width: 175px;
	  height: auto;
	  transition: 0.3s;
	}
	header .header_inner .logo img  {
	    height: auto;
	    margin: 0 10px 0 0;
	    transition: 0.3s;
	    width: 35%;
	    z-index: 2000;
	}
	header .header_inner nav {
	  display: none;
	}
	.header_pc_list {
		display: flex;
		gap: 10px;
		margin-top: 20px;
	}
	.menu_btn {
		display: none;
	}
	.header_pc_list_inner {
		display: flex;
	    flex-direction: column;
	    align-items: center;
	}
	.header_pc_list_inner .fa-solid {
		font-size: 1.8em;
		margin-bottom: 5px;
	}
	@media screen and (max-width: 979px) {
		header .header_inner .menu_btn {
		  display: flex;
		  justify-content: center;
		  align-items: center;
		  width: 79px;
		  height: 32px;
		  background: linear-gradient(to right, #FAD961, #F76B1C);
		  position: relative;
		  padding: 10px;
		  box-sizing: border-box;
		  z-index: 99999;
		  border-radius: 30px;
		  top: 10px;
		  font-family: 'Poppins';
		}
		header .header_inner .menu_btn .btn_wrap {
		  width: 25px;
		  height: 10px;
		  position: relative;
		  transition: 0.3s;
		}
		.header_pc_list {
				display: none;
		}
	}
	header .header_inner .menu_btn .btn_wrap span {
	  display: inline-block;
	  position: absolute;
	  width: 25px;
	  height: 2px;
	  left: 0;
	  background: #fff;
	  transition: 0.3s;
	}
	header .header_inner .menu_btn .btn_wrap span:first-of-type {
	  top: 0;
	  transform-origin: left top;
	}
	header .header_inner .menu_btn .btn_wrap span:last-of-type {
	  bottom: 0;
	  transform-origin: left bottom;
	}
	header .header_inner .menu_btn .text_wrap span {
	  position: absolute;
	  color: #fff;
	  font-weight: 700;
	  font-size: 14px;
	  left: 51%;
	  bottom: 15px;
	  transform: translateX(-50%);
	  transition: 0.3s;
	  letter-spacing: 2px;
	  font-family: 'Poppins';
	  line-height: 0;
	}
	.menu_btn_02 {
		bottom: 7px;
	}
	header .header_inner .menu_btn .text_wrap .open {
	  opacity: 1;
	}
	header .header_inner .menu_btn .text_wrap .close {
	  opacity: 0;
	}
	header .header_inner .menu_btn.open .btn_wrap {
	  height: 15px;
	}
	header .header_inner .menu_btn.open .btn_wrap span {
	  width: 28px;
	}
	header .header_inner .menu_btn.open .btn_wrap span:first-of-type {
	  transform: rotate(28deg);
	}
	header .header_inner .menu_btn.open .btn_wrap span:last-of-type {
	  transform: rotate(-28deg);
	}
	header .header_inner .menu_btn.open .text_wrap .open {
	  opacity: 0;
	}
	header .header_inner .menu_btn.open .text_wrap .close {
	  opacity: 1;
	}
	header .header_inner .menu {
	  position: fixed;
	  right: 0;
	  top: 0;
	  bottom: 0;
	  right: 0;
	  background: #f8f7f3;
	  padding: 90px 0 70px;
	  z-index: 999;
	  display: none;
	  width: 38%;
	}
	header .header_inner .menu .logo_wrap {
	  position: absolute;
	  left: 15px;
	  top: 15px;
	  width: 175px;
	}
	header .header_inner .menu .container {
	  height: 100%;
	  overflow: scroll;
	}
	header .header_inner .menu .main_nav > ul li {
	  box-sizing: border-box;
	}
	header .header_inner .menu .main_nav > ul li a {
	  padding-left: 10px;
	  line-height: 45px;
	  position: relative;
	  display: block;
	  border-bottom: 1px solid rgba(140, 109, 98,0.3);
	}
	header .header_inner .menu .main_nav > ul li a::before {
	  content: "";
	  display: inline-block;
	  position: absolute;
	  margin: auto;
	  width: 0;
	  height: 0;
	  border-left: 6px solid #8c6d62;
	  border-top: 3px solid transparent;
	  border-bottom: 3px solid transparent;
	  left: 0;
	  top: 0;
	  bottom: 0;
	}
	header .header_inner .menu .main_nav > ul:last-of-type li:last-of-type a {
	  border-bottom: none;
	}
	header .header_inner .menu .main_nav > ul .left_wrap .slide_btn {
	  line-height: 45px;
	  padding-left: 10px;
	  position: relative;
	}
	header .header_inner .menu .main_nav > ul .left_wrap .slide_btn::before, header .header_inner .menu .main_nav > ul .left_wrap .slide_btn::after 	{
	  content: "";
	  display: inline-block;
	  position: absolute;
	  margin: auto;
	  width: 10px;
	  height: 2px;
	  background: 1px solid rgba(140 109 98 0.3);
	  right: 10px;
	  top: 0;
	  bottom: 0;
	}
	header .header_inner .menu .main_nav > ul .left_wrap .slide_btn::after {
	  transform-origin: center;
	  transition: 0.3s;
	  transform: rotate(-90deg);
	}
	header .header_inner .menu .main_nav > ul .left_wrap .slide_btn.open::after {
	  transform: rotate(0);
	}
	header .header_inner .menu .main_nav > ul .left_wrap .slide_wrap_header {
	  display: none;
	}
	header .header_inner .menu .main_nav > ul .left_wrap .top_wrap {
	  display: flex;
	  flex-wrap: wrap;
	  border-top: 1px solid rgba(107, 194, 170, 0.3);
	}
	header .header_inner .menu .main_nav > ul .left_wrap .top_wrap li {
	  width: 50%;
	}
	header .header_inner .menu .main_nav > ul .left_wrap .top_wrap li:nth-of-type(2n + 1) {
	  border-right: 1px solid #e3e9f0;
	}
	header .header_inner .menu .main_nav > ul .left_wrap .top_wrap li a {
	  padding-left: 16px;
	  color: #505050;
	}
	header .header_inner .menu .main_nav > ul .left_wrap .top_wrap li a::before {
	  left: 5px;
	}
	header .header_inner .menu .main_nav > ul .left_wrap .bottom_wrap {
	  display: flex;
	  flex-wrap: wrap;
	  border-top: 1px solid #e3e9f0;
	}
	.bottom_wrap {
		border-top: 1px solid rgba(107, 194, 170, 0.3);
	}
	header .header_inner .menu .main_nav > ul .left_wrap .bottom_wrap li {
	  width: 50%;
	}
	header .header_inner .menu .main_nav > ul .left_wrap .bottom_wrap li:nth-of-type(2n + 1) {
	  border-right: 1px solid #e3e9f0;
	}
	header .header_inner .menu .main_nav > ul .left_wrap .bottom_wrap li:nth-of-type(2n) a {
	  padding-left: 27px;
	}
	header .header_inner .menu .main_nav > ul .left_wrap .bottom_wrap li:nth-of-type(2n) a::before {
	  left: 10px;
	}
	header .header_inner .menu .contact_nav {
		background: #fff;
		border-radius: 3px;
		display: flex;
		flex-wrap: wrap;
		margin: 20px 0 0;
	}
	header .header_inner .menu .contact_nav li.tel {
		border-bottom: 1px solid rgba(107, 194, 170, 0.3);
		width: 100%;
	}
	header .header_inner .menu .contact_nav li.tel a {
		display: block;
		line-height: 1;
		padding: 16px 0;
		text-align: center;
		font-size: 22px;
		font-weight: 700;
	}
	header .header_inner .menu .contact_nav li.tel a span {
		font-size: 11px;
		font-weight: 500;
		margin-left: 2px;
	}
	header .header_inner .menu .main_nav > ul .left_wrap .bottom_wrap li:nth-of-type(2n + 1) {
		border-right: 1px solid #e3e9f0;
	}
	header .header_inner .menu .contact_nav li:not(.tel) {
		width: 50%;
		box-sizing: border-box;
	}
	header .header_inner .menu .contact_nav li:not(.tel):last-of-type {
		border-left: 1px solid rgba(107, 194, 170, 0.3);
	}
	header .header_inner .menu .contact_nav li:not(.tel) a {
		display: block;
		line-height: 53px;
		text-align: center;
		position: relative;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0;
	}
	header .btn_contact {
		background: linear-gradient(to right, #FAD961, #F76B1C);
		border-radius: 100vw;
		color: #fff!important;
		padding: 7px 30px;
	}
	@media screen and (max-width: 746px) {
		header .header_inner {
			margin: 10px;
		}
		header .header_inner .menu {
			width: 100%;
			padding: 100px 0 0;
		}
		header .header_inner .menu .container {
			padding: 0 20px 0;
		}
		.btn_header {
			background: none;
			color: #4A3D38;
		}
	}
	main h1 {
		margin: 0 0 40px 0;
	}
	main h2 {
		line-height: 1.5em;
	}
	.main_title {
		padding:  80px 0 60px 0;
	}
	@media screen and (max-width: 979px) {
		main h1 {
			margin: 0 0 20px 0;
		}
		.main_title {
			padding:  80px 20px 40px 20px;
		}
	}
	
	/* mainアニメーション 
	==================================*/

	@keyframes infinity-scroll-left {
		from {
		  transform: translateX(0);
		}
		  to {
		  transform: translateX(-100%);
		}
	}
	.scroll-infinity__wrap {
	  display: flex;
	  overflow: hidden;
	  
	}
	.scroll-infinity__list {
	  display: flex;
	  list-style: none;
	  gap:20px;
	  margin: 0 20px 20px 0;
	}
	.scroll-infinity__list--left {
	  animation: infinity-scroll-left 80s infinite linear 0.5s both;
	}
	.scroll-infinity__item {
	  width: calc(100vw / 5);
	}
	.scroll-infinity__item>img {
	  width: 100%;
	}
	@keyframes infinity-scroll-right {
		from {
		  transform: translateX(-100%);
		}
		  to {
		  transform: translateX(0%);
		}
	}
	.scroll-infinity__list--right{
	  animation :infinity-scroll-right 80s infinite linear 0.5s both;
	}
	@media screen and (max-width: 979px) {
		.scroll-infinity__item {
			width: calc(100vw / 3);
		}
	}
	@media screen and (max-width: 780px) {
		.scroll-infinity__item {
			width: calc(100vw / 2);
		}
	}
	.column {
		display: flex;
		gap: 60px;
		justify-content: space-between;
		align-items: center;
	}
	/* 私について
	==================================*/
	#about h5 {
		margin: 40px 0 40px 0;
	}
	#about p {
		line-height: 2em;
	}
	#about img {
		width: 80%;
		height: auto;
	}
	@media screen and (max-width: 780px) {
		#about .wrap {
			padding: 0;
		}
		.column {
			flex-direction: column;
			gap:20px;
		}
		#about div {
			display: flex;
	        flex-direction: column;
	        align-items: center;
		}
		#about img {
			width: 80%;
		}
	}
	/* 私の強み
	==================================*/
	#strong {
		background: #f7f4f0;
		padding: 100px 0;
	}
	#strong .column {
		align-items: center;
		margin:60px 0 40px 0;
		gap:40;
	}
	#strong .column:last-child{
		margin: 0;
	}
	#strong .column_right{
		flex-direction: row-reverse;
	}
	@media screen and (max-width: 780px) {
		#strong .column_right {
			flex-direction: column;
		}
		#strong .column {
			margin:40px 0 60px 0;
		}
	}
	#strong .column div {
		flex:1
	}
	#strong .column div img {
		width: 100%;
		height: auto;
	}
	#strong .column div h5 {
		margin: 0 0 20px 0;
	}
	#strong .column div p {
		line-height: 1.8em;	
	}
	/* 実績
	==================================*/
	#works {
		background: #e2ddd8;
		padding : 100px 0;
	}
	@media screen and (max-width: 780px) {
		#strong,#works {
			padding : 60px 0;
		}
	}
	#works .column {
		margin: 40px 0 0;
		
	}
	.works_list img {
		width: 100%;
		height: auto;
		filter: drop-shadow(1px 2px 2px #d4cdc5)
	}
	.works_list h5 {
		margin: 0 0 20px;
	}
	.works_list h6 {
		background: #8c6d62;
		border-radius: 100vw;
		color: #fff;
		display: inline-block;
		margin: 20px 0 10px;
		padding: 6px 10px;
	}
	.works_list p {
		align-items: center;
		display: flex;
		gap:10px;
		margin: 0px 0 10px 0;   
	}
	.works_list p::before {
		content:"";
		background: #4a3d38;
		display: inline-block;
		width: 10px;
		height: 1px;
	}
	#works .btn {
		margin: 60px 0 0;
		text-align: right;
	}
	#works .btn a {
		position: relative;
		padding: 0 60px 0 0;
	}
	#works .btn a::before{
		content:"";
		display: inline-block;
		width: 50px;
		height: 50px;
		-webkit-border-radius: 50%;
		border-radius: 50%;
		border: #8C6D52 solid 2px;
		position: absolute;
		right: 0;
		top: -12px;
	}
	#works .btn a::after{
		content:"";
		display: inline-block;
		/* left: 3px; */
		width: 10px;
		height: 10px;
		border-top: 2px solid #8C6D52;
		border-right: 2px solid #8C6D52;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
		right: 23px;
		top: 8px;
		/* rotate: -31deg; */
	}
	@media screen and (max-width: 780px) {
		#works .column {
			gap:40px;
		}
		#works .btn {
			margin: 40px 0 0;
		}
		#works .btn a::before {
			width: 40px;
			height: 40px;
		}
		#works .btn a::after {
			right: 19px;
			top:5px;
		}
	}
	/* 今後のビジョン
	==================================*/
	#vision {
		margin: 50px 0 0;
		padding : 50px 0 100px;
		position: relative;
	}
	#vision h3,#vision h4 {
		text-align: center;
	}
	#vision p {
		max-width: 960px;
		margin: auto;
		margin-top: 40px;
		text-align: center;
		line-height: 3em;
	}
	.vision_01 {
		width: 24%;
		height: auto;
		top: 0;
		position: absolute;
	}
	.vision_02 {
		width: 23vw;
		height: auto;
		right: 0;
		position: absolute;
		top: 3vw;
	}
	.vision_03 {
		position: absolute;
		width: 16vw;
		right: 0;
		top: 23vw;
	}
	.pc_none {
		display: none;
	}
	@media screen and (max-width: 979px) {
		#vision {
			margin: 60px 0 0px;
			padding: 0 20px 40px;
		}
		.vision_01_sp {
			margin: 20px 0 0;
			width: 100%;
		}
		.vision_02_sp {
			width: 70%;
			margin: 40px 0 0;
		}
		.vision_03_sp {
			width: 50%;
			margin-left: auto;
		}
		#vision p {
			margin-top: 20px;
			line-height: 2.3em;
		}
		.sp_none {
			display: none;
		}
		.pc_none {
			display: block;
		}
	}
	/* 新着情報
	==================================*/
	#news {
		background: #f7f4f0;
		border-radius: 0 30px 30px 0;
		max-width: 75%;
		margin: 100px 0;
		padding: 50px 0 60px 60px;
	}
	#news .column {
		align-items: center;
		gap: 40px;
		display: grid;
		grid-template-columns: 1fr 3fr;
		padding: 0 60px 0 0;
	}
	#news .column div {
		text-align: center;
	}
	#news dl {
		display: flex;
		/* max-width: 960px; */
		margin: auto;
		padding: 20px 0 20px;
		gap:40px;
		border-bottom: 1px solid #4a3d38;
		width: 100%;
	}
	@media screen and (max-width: 979px) {
		#news {
			max-width: 80%;
			padding: 60px 20px;
			margin: 40px 0 60px;
		}
		#news .column {
			display: flex;
			padding: 0 0 0;
			gap:20px;
		}
		#news dl {
			flex-direction: column;
			gap:10px;
			text-align: left;
		}
	}
	/* お問合せ
	==================================*/
	#contact {
		background: #e2ddd8;
		padding: 100px 0;
		text-align: center;
	}
	#contact form dl {
		align-items: center;
		display:flex;
		gap:40px;
		margin: 0 0 40px 0;
	}
	#contact form dl:last-of-type {
		align-items: flex-start;
	}
	#contact form dl:first-child {
		margin: 60px 0 40px 0;
	}
	#contact form dl dt {
		text-align: right;
		width: 200px;
	}
	#contact form dl dd input {
		width: 500px;
		height: 40px;
	}
	#contact form dl dd textarea {
		width: 500px;
		height: 250px;
	}
	#contact .btn_form {
		background: #8C6D52;
		border: none;
		color: #fff;
		font-size: 1.05rem;
		filter: drop-shadow(0px 0px 1px #8c6d62);
		height: 45px;
		width: 150px;
	}
	#contact p {
		margin: 10px 0 0 0;
	}
	@media screen and (max-width: 760px) {
		#contact {
			padding: 60px 0;
		}
		#contact form dl {
			flex-direction: column;
			gap:20px;
		}
		#contact form dl:first-child {
			margin: 40px 0 40px 0;
		}
		#contact form dl:last-of-type {
			align-items: center;
		}
		#contact form dl dt {
			width: 250px;
			text-align: left;
		}
		#contact form dl dd input {
			width: 250px;
			height: 30px;
		}
		#contact form dl dd textarea {
			width: 250px;
			height: 150px;
		}
		#contact .btn_form {
			font-size: 1rem;
			height: 38px;
		}
	}
	/* フッター
	==================================*/
	footer {
		max-width: 960px;
		margin: auto;
		padding: 80px 0 0;
	}
	
	footer .column img {
		width: 20%;
		height: 20%;
	}
	footer .column ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap:40px
	}
	.btn_contact {
		border: 1px solid;
		background: #8C6D52;
		display: flex;
		color: #ffffff;
		margin: 40px 0 0;
		padding: 10px 20px;
		text-align: center;
		width: 100%;
		height: 35px;
		align-items: center;
		justify-content: center;
	}
	footer p {
		margin: 60px 0 10px;
		text-align: center;
	}
	@media screen and (max-width: 979px) {
		footer {
			max-width: 960px;
			margin: auto;
			padding: 40px 0 0;
		}
		.btn_contact {
			width: 80%;
		}
	}
	/* 実績ページ
	==================================*/
	#work_01 {
		margin: 120px 0 100px;
	}
	#work_01 h3 {
		color: #8c6d62;
		margin: 0px 0 20px;
	}
	#work_01 p {
		margin: 0 0 40px;
	}
	.btn_web {
		display: inline-block;
		margin: 0 0 20px;
	}
	#work_01
	.btn_work_01 {
		display: inline-block;
		vertical-align: middle;
		line-height: 1;
		position: relative;
		width: 0.7em;
		height: 0.7em;
		transform: translateX(-25%) rotate(45deg);
	}
	.btn_work_01::before,.btn_work_01::after {
		content: '';
		position: absolute;
		background: currentColor;
		border-radius: 0.1em;
	}
	.btn_work_01::before {
		top: 0;
		left: 0;
		right: 0;
		height: 0.1em;
	}
	.btn_work_01::after {
		top: 0;
		right: 0;
		bottom: 0;
		width: 0.13em;
	}
	#work_01 img {
		width: 100%;
		height: auto;
	}
	#work_01 .work_content {
	 margin: 60px 0 60px;
	}
	#work_01 .work_content dl {
		display: grid;
		grid-template-columns: 1fr 2fr;
		align-items: flex-start;
		margin: 0 0 20px;
	}
	#work_01 .work_content dl dt {
		color: #8c6d62;
		font-weight: 600;
		font-size: 1.1rem;
	}
	#work_01 .work_content dl dd {
		line-height: 1.8em;
	}
	#work_01 .work_content ul li {
		align-items: center;
		display: flex;
		gap: 10px;
		margin: 0 0 10px;
    }
	#work_01 .work_content ul li:before {
		content:"";
		background: #4A3D38;
		display: inline-block;
		width: 5px;
		height: 1px;	
	}
	#work_01 .column {
		margin: 60px 0 0;
		justify-content: space-evenly;
	}
	#work_01 .column img {
		width: 30%;
		height: auto;
	}
	@media screen and (max-width: 979px) {
		#work_01 {
			margin: 80px 0 60px;
		}
		.works_content {
			margin: 40px 0 0;
		}
		#work_01 h3 {
			line-height: 1.1em;
		}
		#work_01 .work_content dl {
			display: flex;
			flex-direction: column;
			gap: 20px;
			margin: 0 0 40px;
		}
		#work_01 .column {
			gap:0;
		}
		#work_01 .column img {
			width: 70%;
			height: auto;
		}
	}