@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Pacifico);

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}

body{
	font: 15px/1.9 'Noto Sans JP', Arial, Verdana, YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo,sans-serif;
	font-weight: 300;
	-webkit-text-size-adjust:100%;
	overflow-x: hidden;
	color: #000;
	background: #fff;
	position: relative;
	letter-spacing: .08em;
}
html.fixed {
    height: 100%;
}
body.fixed{
	height: 100%;
	overflow: hidden;
}
.noscroll.fixed {
	overflow: hidden;
}

a{
	color: #fff;
	text-decoration: none;
}

a:hover, .active{
  text-decoration: underline;
}

a:active, a:focus,input:active, input:focus{outline:0;}

a.current-page{
	color: #3caf82 !important;
	font-weight: 800 !important;
	pointer-events: none !important;
}

/* header
------------------------------------------------------------*/
#header{
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	/*box-shadow: 0 0 10px rgb(0 0 0 / 20%);*/
}

#header h1{
	width: 20%;
	min-width: 150px;
	max-width: 200px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}
#header h1 a {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	transition: .2s;
}
#header h1 a:hover {
	opacity: .6;
}
#header h1 a::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 80%;
	width: 90%;
	background-image: url("https://stg.design.sakabe.co.jp/images/logo.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left;
	box-sizing: border-box;
	margin: 0 auto 0 10px;
}
#header h1 a img{
	display: none;
}
#headerWrap{
	height: 100%;
	display: flex;
	background: rgb(255 255 255 / 45%);
	transition: .2s all;
}
#headerWrap.bg-white {
	background: #fff;
	box-shadow: 0 0 30px rgb(74 73 73 / 20%);
}
#mainnav {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#mainnav a{
	color: #000;
	font-weight: 400;
	transition: all .2s;
	display: block;
}
#mainnav .panel ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (min-width: 1150px){
	#mainnav .panel ul{
		gap: 3em;
		justify-content: flex-end;
	}
}
@media only screen and (min-width: 1000px){
	#mainnav .panel a{
		font-weight: 600;
	}
}
#mainnav .panel li {
	line-height: 1.5em;
}
#mainnav .panel li a:hover{
	text-decoration: none;
}
#mainnav .panel li a:hover,
#mainnav .panel li a:hover *{
	color: #21af80 !important;
}
@media only screen and (min-width: 1000px){
	.contact_li {
		height: 80px;
		min-width: 9em;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #154233;
		padding: 0 1em;
	}
	.contact_li a {
		color: #fff !important;
		display: flex;
		align-items: center;
	}
	.contact_li a::before {
		font-family: "Font Awesome 5 Free";
		content: '\f0e0';
		font-size: 1.2em;
		font-weight: 700;
		color: #fff;
		margin-right: .5em;
	}
	#mainnav .panel .contact_li a:hover {
		color: #fff !important;
		opacity: .7;
	}
}


#mainImg{
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #fff;
	height: 100lvh;
	max-height: 1000px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 10%;
	padding-top: calc(10% + 80px);
	box-sizing: border-box;
}
#mainImg::before,
#mainImg::after{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#mainImg::before {
	background-image: url('/wp/wp-content/themes/sakabe_design/img/mainImg.jpg');
	background-position: center;
	background-size: cover;
}
#mainImg:not(.subpage)::before {
	transition: 2s ease-out;
	animation: zoomOut 2.5s linear forwards;
}
#mainImg::after {
	width: 50%;
	background: linear-gradient(to right, rgb(0 0 0 / 35%), transparent);
}
#mainImg.subpage {
	height: 450px;
	display: flex;
	flex-direction:column;
	justify-content: center;
	align-items: flex-end;
	padding: 0;
}
#mainImg.subpage::before {
	background-image: url('/wp/wp-content/themes/sakabe_design/img/about/header_img.jpg');
	background-position: right;
}
#mainImg.subpage::after {
	display: none;
}
#mainImg.subpage h2,
#mainImg.subpage h3 {
	z-index: 2;
}
#mainImg img{
	display: block;
	position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#mainImg .mainTitle,
#mainImg p {
	z-index: 2;
}
#subImg {
	width: 100%;
	height: auto;
	display: flex;
	position: relative;
	margin-top: 80px;
	aspect-ratio: 1920/500;
}
#subImg.about {
	display: block;
}
#subImg:not(.about)::after {
	content: "";
	position: absolute;
	display: block;
	width: 8%;
	height: 100%;
	right: 0;
	top: 0;
	background: url("/wp/wp-content/themes/sakabe_design/img/common/subImg_bg_right.jpg");
	background-size: cover;
	background-position: left 55% center;
}
#subImg:not(.about) img {
	width: 50%;
	height: 100%;
	object-fit: cover;
}
#subImg:not(.about) .title{
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	background: #15a793;
	align-content: center;
	flex-direction: column;
	padding: 0 .5em 0 1em;
	position: relative;
}
#subImg:not(.about) .title::before,
#subImg:not(.about) .title::after{
	content: "";
	position: absolute;
	background: #15a793;
	left: -20%;
	width: 40%;
}
#subImg .title::before {
	top: 0;
	height: 30%;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#subImg .title::after {
	bottom: 0;
	height: 70%;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
#subImg.about .title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
}
#subImg h2 {
	color: #fff;
	padding-top: .2em;
	z-index: 1;
}
#subImg h3 {
	background: #fff;
	border-radius: 100px;
	font-weight: 600;
	font-size: 1em;
	padding: 0 .5em;
	text-transform: uppercase;
	z-index: 1;
}
#subImg.about .title h2 {
	padding: 0;
	color: #000;
	font-weight: 600;
}
#subImg.about .title h3 {
	color: #000;
	font-weight: 600;
	background: #15a793;
	color: #fff;
	font-family: inherit;
	display: inline-block;
	padding: 0 1em;
	margin-top: .5em;
}
#subImg.about .title p {
	font-size: .9em;
	font-weight: 600;
}
#subImg.about img {
	min-height: 180px;
	object-fit: cover;
}
@media only screen and (max-width: 1000px){
	#subImg.about {
		height: 400px;
		position: relative;
		display: block;
	}
	#subImg.about .wrapper::before {
		content: "";
		width: 50%;
		height: 100%;
		display: block;
		background-image:url('/wp/wp-content/themes/sakabe_design/img/about/subImgabout_bg_left.jpg');
		background-position: center;
		background-size: cover;
		position: absolute;
		left: 0;
		top: 0;
	}
	#subImg.about .wrapper::after {
		content: "";
		width: 50%;
		height: 100%;
		display: block;
		background-image:url('/wp/wp-content/themes/sakabe_design/img/about/subImgabout_bg_right.jpg');
		background-position: center;
		background-size: cover;
		margin-left: auto;
		position: absolute;
		right: 0;
		top: 0;
	}
	#subImg.about img {
		display: none;
	}
	#subImg.about .title {
		background: rgb(255 255 255 / 80%);
		max-width: 350px;
		width: 90%;
		padding: 2.5em 1em;
		box-sizing: border-box;
		border: 5px solid #15a793;
		z-index: 1;
	}
	#subImg.about .title::after {
		content: "";
		display: block;
		width: 100%;
		height: 70px;
		background-image:url('/wp/wp-content/themes/sakabe_design/img/about/subImgabout_bg_center.png');
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		clip-path: unset;
		position: absolute;
		top: calc(100% - 30px);
		left: 0;
	}
	#subImg.about .title h2 {
		font-size: 2em;
		font-weight: 500;
		letter-spacing: 0;
	}
	#subImg.about .title h3 {
		font-size: .9em;
	}
	#subImg.about .title p {
		font-weight: 500;
		font-size: 1em;
	}
	#subImg.about .title span {
		display: block;
	}
}
@media only screen and (max-width: 640px){
	#subImg:not(.about) {
		min-height: 180px;
	}	
	#subImg::after {
		display: none !important;
	}
	#subImg h2 {
		font-size: 1em;
	}
	#subImg h3 {
		font-size: 12px;
	}
	#subImg:not(.about) .title {
		height: 180px;
	}
	#subImg.about .title {
		padding: 2.5em 0;
	}
	.index p {
		display: none;
	}
	#subImg.about .title {
		max-width: 280px;
	}
	#subImg.about .title p {
		font-size: .8em;
	}
	#subImg.about .title h2 {
		font-size: 1.5em;
	}
	#subImg.about .title h3 {
		font-size: 1em;
	}
	
}
.span_txt{
	font-size: .6em;
	color: #4c4f51;
}

.contact_btn{
	width: 100px;

}

/* SNS
------------------------------------------------------------*/

footer {
	position: relative;
	z-index: 3;
}
.snsList{
    width: 210px;
    margin: 0px auto;
	position: absolute;
	top: -60px;
	left: 0;
	right: 0;
	margin: auto;
	display: none;
}
.snsList ul{
    width: 210px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /*justify-content: space-between;*/
    justify-content: center;
}
.snsList li{
    width: 40px;
    margin: 0px 10px 30px !important;
}

/* floating_banner
------------------------------------------------------------*/
aside.floating-banner {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(calc(-50% + 40px));
	z-index: 1;
}
aside.floating-banner div {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
aside.floating-banner a {
	display: flex;
	justify-content: center;
	writing-mode: vertical-rl;
	font-weight: 500;
	letter-spacing: .25em;
	padding: 2rem .5rem;
	font-size: 1rem;
	min-height: 200px;
	box-sizing: border-box;
	text-decoration: none;
	transition: .2s;
}
aside.floating-banner a:hover,
aside.floating-banner a:hover + aside{
	opacity: .6;
}
aside.floating-banner a[title="YouTube"]{
	background: #dc615c;
}
aside.floating-banner a[title="contact"]{
	background: #21af80;
}
aside.floating-banner aside {
	position: absolute;
	width: 75px;
	height: auto;
	aspect-ratio: 1;
	right: 20px;
	bottom: 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	filter: drop-shadow(0px 0px 6px  rgb(0,0,0,20%));
    transition: .2s;
}
aside.floating-banner aside::after {
	content: "";
	display: block;
	width: 1rem;
	height: .8rem;
	background: #fff;
	position: absolute;
	right: 10%;
	bottom: -2%;
	clip-path: polygon(0 100%, 100% 50%, 0 0);
	transform: rotate(50deg);
}
aside.floating-banner aside p {
	font-size: .75rem;
	font-weight: 900;
	line-height: 1.2;
	color: #137750;
    margin: 0;
}
aside.floating-banner aside p:first-child {
	padding-top: .2em;
}
aside.floating-banner aside p:has(small) {
	padding-top: .1em;
}
aside.floating-banner aside p small {
	font-size: .8em;
	font-weight: 700;
}

/* footer
------------------------------------------------------------*/
#footer{
	clear: both;
	padding: 50px 10px 50px 0;
	text-align: center;
	font-size: 12px;
}

/* backtoTop
------------------------------------------------------------*/
.backToTop{
	position: fixed;
	bottom: 0;
	right: 0;
	width: 4.5em;
	opacity: 0;
}
.backToTop a{
	aspect-ratio: 1/1;
	color: #fff;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: .5em;
	background: rgb(74 73 73 / 40%);
	font-size: 1em;
	line-height: 1em;
}
.backToTop a::before{
	content: "";
	display: block;
	width: .6em;
	height: .6em;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(-45deg);
	margin-bottom: .5em;
}
.backToTop a:hover{
	background: rgb(74 73 73 / 70%);
    text-decoration: none;
}
.backToTop.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
.backToTop.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}



/* common
------------------------------------------------------------*/

img{
	max-width: 100%;
	height: auto;
}

section{
	clear:both;
	padding-top: 80px;
	width: 100%;
}
section#privacy {
	margin-top: 50px;
}

/* section h2{
	font-family: 'Pacifico', cursive;
	width: 60%;
	margin: 0 auto 40px;
	font-size: 22px;
	font-weight:normal;
	text-align: center;
	background: url(../images/borderBlack.png) repeat-x 0 50%;
	background-size: 1px 1px;
} 

section h2 span {
	background: #fff;
	padding: 0 80px;
}*/

.inner{
	width: 94%;
	margin: 0 auto;
	padding-bottom: 50px;
}

.innerS{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding-bottom: 80px;
	display: flex;
	flex-wrap: wrap;
}

h2{
	font-size: 25px;
	color: #4c4f51;
	font-weight: 400;
}

h3{
	font-size: 20px;
	color: #21af80;
	font-weight: 500;
	font-family:'Courier New', Courier, monospace;
}


/* 
------------------------------------------------------------*/

#mainImg .mainTitle, #mainImg p{
	color: #ffffff;
	opacity: 0.8;
}

#mainImg .mainTitle{
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: 1px solid #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items:flex-start;
	gap: .5em;
}

#mainImg .mainTitle div{
	font-size: 2em;
	line-height: 1em;
	letter-spacing: .1em;
	width: auto !important;
}

#mainImg .mainTitle div:first-child span span{
	position: relative;
	font-size: 1.2em;
	font-family:'Courier New', Courier, monospace;
	padding: 0 .3em 0 .1em;
}

#mainImg .mainTitle div + div{
	position: relative;
	line-height: 1.5em;
	font-size: 4.5em;
}

#mainImg p{
	font-family:'Courier New', Courier, monospace;
	width: 100%;
	text-align: right;
	letter-spacing: .1em;
	font-size: 1.5em;
	opacity: 0;
	animation: fadeIn 1s linear forwards;
	animation-delay: 2s;
}

/* 
------------------------------------------------------------*/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 999;
    }

.bigimg {
    position: absolute;
    width: 80%;
    max-width: 800px;
    top: 80px;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
}

.close-btn {
    color: #fff;
    font-size: 40px;
    position: absolute;
    right: 20px;
    top: 0;
}

.close-btn a {
    color: #fff;
    text-decoration: none;
}

/* animation
------------------------------------------------------------*/

.fadeInAnimeTrigger {
	opacity: 0;
}
.fadeInAnime {
	animation: fadeIn 1.5s linear forwards;
	animation-delay: .6s;
}

/*movetoRight*/
	@keyframes movetoRight {
		0% {
			background-position: left;
		}
		100% {
			background-position: right;
		}
	}

/*fadeIn*/
	@keyframes fadeIn {
		0% {
			opacity:0;
		}
		100% {
			opacity:1;
		}
	}

/*zoomOut*/
	@keyframes zoomOut {
		0% {
			transform: scale(1.1);
		}
		100% {
			transform: scale(1);
		}
	}

/*eachTextAnime*/
	.eachTextAnime span {
		opacity: 0;
	}
	.eachTextAnime.appeartext span {
		animation: text_anime_on .5s linear forwards;
	}
	@keyframes text_anime_on {
		0% {
			opacity:0;
		}
		100% {
			opacity:1;
		}
	}

/*slideTextAnime*/
	.slide-in {
		overflow: hidden;
		display: inline-block;
	}
	.slide-in_inner {
		display: inline-block;
	}
	.slideTextAnime{
	    opacity: 0;
	}
	.slideTextAnimeLefttoRight {
		animation: slideTextX100 .8s linear forwards;
		animation-delay: .3s;
	    opacity: 0;
		transform: translateX(-100%);
	}
	.mainTitle .slideTextAnimeLefttoRight:last-of-type {
		animation-delay: .8s;
	}
	@keyframes slideTextX100 {
	  from {
		transform: translateX(-100%);
	        opacity: 0;
	  }
	
	  to {
		transform: translateX(0);
	    opacity: 1;
	  }
	}
	.slideTextAnimeRighttoLeft {
		animation: slideTextX-100 .8s linear forwards;
		animation-delay: .3s;
	    opacity: 0;
	}
	.mainTitle .slideTextAnimeLefttoRight:last-of-type .slideTextAnimeRighttoLeft {
		animation-delay: .8s;
	}
	@keyframes slideTextX-100 {
	  from {
		transform: translateX(100%);
	    opacity: 0;
	  }
	
	  to {
		transform: translateX(0);
	    opacity: 1;
	  }
	}


/* SEC01 
------------------------------------------------------------*/
#sec01,#sec04{
	width: 100%;
	padding-top: 0px;
}
.bg_color{
	background: #fff;
	padding-top: 60px;
}
.inner_left{
    width: 53%;
    /* width: 420px; */
    text-align: center;
    padding: 2%;
}
.inner_right{
    width: 39%;
    /*width: 420px;*/
    text-align: center;
    padding: 2%;
    margin: auto;
}

#sec01 .inner_left p {
	text-align: center;
}

.inner_left p {
	padding: 30px;
    text-align: left;
}
.inner_right p {
	padding: 30px;
}

.green_border{
    background-color: #21af80;
    content: "";
    display: block;
    height: 4px;
    width: 70px;
    display: block;
	margin: 1em auto 0;
}


/* SEC02
------------------------------------------------------------*/
#sec02{
	padding: 0 !important;
}
#sec02 header{
	display: none;
}
#sec02 .innerS{
    justify-content: center;
}
.upperPart{
	background-color: #efedde;
	position: relative;
	height: 480px;
}
.upperPart .innerS{
	position: relative;
	padding-bottom: 0;
}
.upperPart .innerS .inner_left{
	position: relative;
	right: 10%;
}
.upperPart .innerS .inner_left img{
	width: 100%;
	padding-top: 20px;
}
.upperPart .innerS .inner_right img{
	z-index: 10;
}
.upperPart .innerS .inner_right{
	position: relative;
	padding: 20px 0 0 0;
	margin: 0;
}
.upperPart .innerS .inner_right p{
	position: relative;
	padding: 30px 0;
    text-align:left;
}
.lowerPart{
	background-color: #eff7ed;
}
.lowerPart .col3{
	position: relative;
	top: -90px;
	text-align: center;
	display: flex;
	justify-content:space-between;
	align-items: center;
	padding: 1em;
}
.col3 li{
	line-height: 2.0;
	text-align: left;
	color: #000000;
	width: 30%;
    vertical-align: top;
	position: relative;
}
.col3 li::before{
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(to left top,#000, #00000045);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: .6;
}
.col3 li p:last-child{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	font-weight: 600;
	font-size: 1.1em;
	width: 80%;
	text-decoration: underline;
	letter-spacing: .3em;
}
.aboutSakabe{
	text-align: center;
}
.aboutSakabe p{
	padding: 30px 0 80px;
    text-align: left;
	max-width: 700px;
}

/* SEC03
------------------------------------------------------------*/
#sec03{
	width: 100%;
	background-color: #efedde;
}
#sec03 .innerS{
	background-color: #fff;
	top: -100px;
	position: relative;
	padding-top: 50px;
	padding-bottom: 40px;
}
#sec03 .innerS .inner_left{ 
	width: 65%;
	text-align: center;
}
#sec03 .innerS .inner_right{ 
	padding: 50px 30px 50px 0;
	width: 22%;
}

.btn{
	width: auto;
	padding: .5em 5em;
	background-color: #6a6161;
	text-align: center;
	color: #fff;
	font-weight: 400;
	display: inline-block;
	position: relative;
	border: 1px solid transparent;
	transition: all .3s;
}
.btn::after {
	content: "";
	width: .5em;
	height: .5em;
	border-left: 1px solid #fff;
	border-bottom: 1.5px solid #fff;
	position: absolute;
	right: 1.5em;
	top: 50%;
	transform: translateY(-50%) rotate(-135deg);
}
.btn:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}
.btn:hover::after {
	border-left: 1px solid #000;
	border-bottom: 1.5px solid #000;
}
.btn:hover a {
	color: #000;
	text-decoration: none;
}


/* SEC04
------------------------------------------------------------*/

#sec04 .inner_left{
	/* height: 350px; */
	padding-top: 0;
}
#sec04 .inner_right{
	position: relative;
}

.sec04img{
	width: 100%;
}

.sec04img_line {
	position: absolute;
	top: 10%;
	left: -10%;
	z-index: -1;
	
}
#sec04_02{
	text-align: center;
	padding: 90px 20px;
	color: #fff;
    background:rgba(198,140,88,0.2);
	font-weight: 500;
	text-shadow: 0 0 50px #000;
	line-height: 3em;
}
@media only screen and (min-width: 640px){
	#sec04_02 br.sp {
		display: none;
	}
}
#sec04_02 .bg_img::before {
  background: url('img/bgSec04.jpg') no-repeat 100% 100%; 
  background-size: cover;
  content: ""; 
  display: block; 
  position: fixed;
  top: 0; 
  left: 0;
  z-index: -999;
  width: 100%;
  height: 100vh;
}


#sec04_02 img{
	width: auto;
}


/* SEC05 COMPANY
------------------------------------------------------------*/
#footer_upper{
	background-color: #4a4949;
	padding: 2em 2%;
}
#footer_upper p{
	padding-top: 30px;
	color: #fff;
	font-size: 12px;
}
#footer_upper img{
	/*width: 200px;*/
	height: 55px;
}
#footer_upper .innerS{
	padding: 30px 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	box-sizing: border-box;
}
#footer_upper .footer_text {
	max-width: 400px;
}
#footer_upper .footer_text a {
	display: inline-block;
	transition: all .2s;
}
#footer_upper .footer_text a:hover {
	opacity: .5;
}
#footer_upper .footer_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	max-width: 500px;
	align-items: center;
	padding: 1em 0;
	column-gap: 2em;
}
#footer_upper .footer_menu li{
	width: 40%;
	display: flex;
	border-bottom: 1px solid #ffffff1c;
	padding-left: .5em;
	line-height: 2.5em;
	box-sizing: border-box;
}
#footer_upper .footer_menu li a {
	display: block;
	width: 100%;
	position: relative;
}
#footer_upper .footer_menu li a::after {
	content: "";
	width: .5em;
	height: .5em;
	border-left: 1px solid #fff;
	border-bottom: 1.5px solid #fff;
	position: absolute;
	right: .5em;
	top: 50%;
	transform: translateY(-50%) rotate(-135deg);
}
#footer_upper .footer_menu a {
	transition: all .2s;
}
#footer_upper .footer_menu a:hover {
	text-decoration: none;
	color: #21af80;
}
#footer_upper .footer_menu a:hover::after {
	border-left: 1px solid #21af80;
	border-bottom: 1.5px solid #21af80;
}
#footer_upper .logo_list {
	display: flex;
	gap: 1em;
}
#footer_upper .logo_list a:first-child {
	display: flex;
	padding-right: 2em;
}
#footer_upper .logo_list a:not(:first-child) {
	display: block;
	width: 3em;
	aspect-ratio: 1/1;
	background: #fff;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position:  center;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	position: relative;
	top: .5em;
}
#footer_upper .logo_list a[title="Facebook"] {
	-webkit-mask-image:url('/wp/wp-content/themes/sakabe_design/img/snslogo_fb.svg?ver2');
	mask-image:url('/wp/wp-content/themes/sakabe_design/img/snslogo_fb.svg?ver2');
}
#footer_upper .logo_list a[title="Instagram"] {
	-webkit-mask-image:url('/wp/wp-content/themes/sakabe_design/img/snslogo_inst.svg?ver2');
	-webkit-mask-size: 70%;
	mask-image:url('/wp/wp-content/themes/sakabe_design/img/snslogo_inst.svg?ver2');
	mask-size: 70%;
	box-sizing: border-box;
	top: .55em;
}
#footer_upper .logo_list a[title="YouTube"] {
	-webkit-mask-image:url('/wp/wp-content/themes/sakabe_design/img/fa-youtube-brands.svg');
	-webkit-mask-size: 80%;
	mask-image:url('/wp/wp-content/themes/sakabe_design/img/fa-youtube-brands.svg');
	mask-size: 70%;
	box-sizing: border-box;
}
#footer_upper .logo_list a:not(:first-child) img{
	height: auto;
	display: none;
}
#footer_bottom{
	padding: 30px 10px 30px 0;
	background-color: #21af80;
	font-size: 10px;
	text-align: center;
}
#footer_bottom a{
	margin-right: 10px;
}



/*
------------------------------------------------------------*/

.index p{
	margin: 10px 30px;
}
.index p a{
	color: inherit;
}

.mainImg{
	position: relative;
}

.mainImgtxt{
	position: relative;
	top: -80px;
	float: right;
	padding-right: 2%;
}

#mainImg .pageTitle{
	font-size: 60px;
	font-family: Courier New;
	font-style: italic;
	opacity: 0.8;
	line-height: 100%;
	position: relative;
	top: 50px;
	padding-right: 5%;
	color: #000;
}

#mainImg .pageDiscription{
	font-size: 1.6em;
	font-weight: 400;
	letter-spacing: .5em;
	color: #000;
	opacity: 0.6;
	position: relative;
	top: 50px;
	padding-right: 5%;
}



/* about_SEC01 
------------------------------------------------------------*/
#about_sec01 .innerS{
	justify-content: center;
	width: 100%;
    padding-bottom: 0;
}

#about_sec06 .innerS .yorisoi_fukidashi ul{
	text-align: left;
	width: 50%;
	margin: 20px auto;
}

#about_sec06 .innerS {
	display: block !important;
	margin: 0 auto;
}

#about_sec06 .innerS .yorisoi_fukidashi ul li{
	font-weight: 700;
}

#about_sec06 .innerS .yorisoi_fukidashi ul li:last-child::after{
    content: "など…";
	font-weight: normal;
	margin-left: 60px;
}

.yorisoi_fukidashi p{
	text-align: left;
}
.yorisoi_fukidashi{
	background-color: #eff7ed;
	text-align: center;
	padding: 50px;
}
#about_sec01 .yorisoi_fukidashi{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	row-gap: 30px;
	width: 90%;
	box-sizing: border-box;
}
#about_sec01 .yorisoi_fukidashi > div{
	width: calc(100%/3);
}
#about_sec06 .yorisoi_fukidashi {
	background-color: #efedde;
	box-sizing: border-box;
}
.yorisoi_fukidashi img{
	width: 150px;
	margin-bottom: 2em;
}
.yorisoi_icon{
	display: inline-block;
	width: 30%;
}
.yorisoi_icon p{
	text-align: center;
	font-weight: 600;
	font-size: 1.2em;
	line-height: 3.5em;
}
.yorisoi_icon>img{
	width: 150px;
}
.fukidashi_square{
	width: 100%;
	text-align: center;
}
.fukidashi {
	width: 40px;
	height: 40px;
}
.yorisoi_txt{
	margin-top: 100px;
}
.yorisoiTitle {
	margin-bottom: 1.5em;
}
#about_sec01 div.solve{
	font-weight: 600;
	font-size: 25px;
	box-sizing: border-box;
	position: relative;
	z-index: 0;
	transform: rotate(-10deg);
	left: -5%;
	top: -4%;
}
#about_sec01 div.solve::before,
#about_sec01 div.solve::after{
	content: "";
	background: #4a4949;
	width: 2px;
	height: 60px;
	position: absolute;
	top: 50%;
	z-index: -1;
}
#about_sec01 div.solve::before {
	left: -1.5em;
	transform: translateY(-50%) rotate(-25deg);
}
#about_sec01 div.solve::after {
	right: -1.5em;
	transform: translateY(-50%) rotate(25deg);
}
#about_sec01 div.solve div{
    font-size: 32px;
    letter-spacing: .25em;
    line-height: 2.5em;
    font-weight: 700;
    color: #21af80;
}

#about_sec01 div.solve span.dot_text{
    padding-top: .4em;
    background-position: top left -2px;
    background-repeat: repeat-x;
    background-size: 1.3em .3em;
    background-image: radial-gradient(.15em .15em at center center,#634A39,#634A39 100%,transparent);
}



/* about_SEC02
------------------------------------------------------------*/
#about_sec02{
	position: relative;
}

#about_sec02 .bg_color{
	background-color: #efedde;
	width: 100%;
	z-index: -10;
	padding-bottom: 70px;
}
.innerS .inner{
	position: relative;
}
.about_sec02_01{
	position: absolute;
	z-index: 3;
	top: 120px;
	left:0;
}
.about_sec02_line{
	position: relative;
	width: 540px;
	height: 361px;
	left: 10%;
	top: 150px;
}
.about_sec02_inner .inner_text{
	position: absolute;
	width: 50%;
	max-width: 500px;
	background-color: #fff;
	padding: 3em;
	top: 0;
	right: 0;
	z-index: 3;
	text-align: center;
}
.about_sec02_inner .inner_text p {
	text-align: left;
	margin-top: 2em;
}

/* about_SEC03
------------------------------------------------------------*/
.point {
	font-size: x-large;
	font-family: "Segoe Script";
}

#about_sec03, #about_sec04, #about_sec05{
	text-align: center;
}

#about_sec03 .innerS .inner{
	height: 500px;
}

.about_sec_top {
	width: 100%;
	max-width: 1000px;
	text-align: center;
	display: block;
	margin: auto;
	padding: 0 0 60px 0;
}

.about_sec_top p{
	text-align: left;
	max-width: 750px;
	margin: auto;
}
#about_sec03 div:nth-child(2){
	width: 80%;
	max-width: 1200px;
	margin: 0 auto 30px;
}
#about_sec03 .innerS {
	width: 90%;
	flex-wrap: nowrap;
	box-sizing: border-box;
}
#about_sec03 .innerS div{
}
#about_sec03 .innerS div:first-child{
	max-width: 1000px;
	width: 70%;
}
#about_sec03 .innerS div:first-child img{
	padding-left: 20px;
}
#about_sec03 .innerS div:last-child{
	width: 30%;
}
#about_sec03 .innerS p{
	text-align: left;
	background: #fff;
	border: 1px solid #ccc;
	padding: 10%;
	position: relative;
	top: -80px;
	font-weight: 700;
}
.grayline{
	background: linear-gradient(transparent 60%, #dddbdb 0%);
	padding: 0;
	}

.about_sec03_01 {
	position: absolute;
	width: 450px;
	z-index: 3;
	top: 40px;
	right: 43%;
}

.about_sec03_02 {
	position: absolute;
	width: 350px;
	right: 20%;
	top: 360px;
	z-index: 3;
}

.about_sec03_line{
	position:absolute;
	width: 450px;
	z-index: 2;
	right: 47%;
	top: 20px;
}

.about_sec03_inner .inner_text {
	position: relative;
	width: 60%;
	right: -70%;
	text-align: left;
}



/* about_SEC04
------------------------------------------------------------*/

#about_sec04{
	text-align: center;
	position: relative;
}

#about_sec04 .bg_color{
	background-color: #efedde;
	width: 100%;
	z-index: -10;
	top:-50px;
	padding: 60px 0 80px 0;
}

#about_sec04 .innerS{
	background-color: #fff;
	border: solid 5px #c9c3c3;
	justify-content: center;
	padding: 20px;
	width: 50%;
}

#about_sec04 .innerS .inner_right{
	width: 100%;
	font-size: large;
	font-weight: 700;
}

#about_sec04 .innerS .inner_right span{
	display: block;
}


/* about_SEC05
------------------------------------------------------------*/
#about_sec05 .about_sec_top{
	padding: 0;
}

#about_sec05 .bg_color {
	padding: 0;
}

#about_sec05 .onayamiList {
    overflow: hidden;
	background: #eff7ed;
	width: 90%;
	max-width: 1000px;
	margin: 60px auto;
}

#about_sec05 .onayami{
	float: left;
	width: 30%;
	padding: 30px;
	box-sizing: border-box;
}

#about_sec05 .onayamiSolve{
	padding: 30px;
	text-align: left;
}

.onayamiSolve, .onayamiPoint{
	margin-bottom: 30px;
}

.onayamiSolve h3::before {
	content: "";
	font-size: xxx-large;
	position: absolute;
}

.onayami img{
	width: 70%;
	margin-top: 20px;
}

.onayamiYorisoi img{
	width: 25%;
	float: right;
	padding-left: 30px;
	margin-bottom: 20px
}

#about_sec05 .onayamiList::after{
	overflow: hidden;
}

/* sekkei
------------------------------------------------------------*/
.innerLink {
	padding-top: 80px;
	margin-top: 60px;
}

#sekkei_sec01, #sekkei_sd02, #cadphoto_sec01, #cadphoto_sec02{
	text-align: center;
	margin: auto;
}

#sekkei_sec01 p, #cadphoto_sec01 p{
	width: 50%;
	margin: 30px auto ;
}

#sekkei_sec01 .sekkeiIntro, #cadphoto_sec01 .cadphotoIntro{
	background-color: #efedde;
	width: 100%;
	margin: 60px auto 0;
	padding: 30px 0;
}

#sekkei_sec01 .sekkeiIntro p, #cadphoto_sec01 .cadphotoIntro p{
	text-align: left;
	width: 50%;
}

#sekkei_sec01 .sekkeiIntro h2, #cadphoto_sec01 .cadphotoIntro h2{
	font-weight: 700;
}

#sekkei_sec01 .newContentsList {
	width: 90%;
	display: flex;
	gap: 10px;
	margin: 100px auto 50px;
	justify-content: center;
}
#sekkei_sec01 .newContentsList a {
	color: #000;
}
#sekkei_sec01 .newContentsList a:hover {
	text-decoration: none;
	opacity: 0.6;
}
#sekkei_sec01 .newContentsList li{
	width: 20%;
	background:rgba(255,255,255,0.8);
}
#sekkei_sec01 .newContentsList div.img{
	height: 220px;
	background-size: cover;
	background-position: center;
	position: relative;
}
#sekkei_sec01 .newContentsList div.img .inProcess:before{
    content: "Ã¨Â¨Â­Ã¨Â¨Ë†Ã¤Â¸Â­";
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.3em;
    display: block;
    position: absolute;
	padding: 10px 15px;
	top: calc(50% - 25px);
	width: 120px;
	left: calc(50% - 60px);
	margin: auto;
	box-sizing: border-box;
	border: 2px solid #000;
	z-index:1;
	text-shadow:0 0 10px #fff;
	#box-shadow:0 0 60px #fff;
	background:rgba(255,255,255,0.5);
}
#sekkei_sec01 .newContentsList li:first-child div.img,#sekkei_sec01 .newContentsList li:nth-child(2) div.img{
	background-color: #bbb;
}
#sekkei_sec01 .newContentsList li:first-child div.img::before {
    content: "";
    top: 0;
    left: 0;
    border-bottom: 6em solid transparent;
    border-left: 6em solid #3caf82;
    position: absolute;
    z-index: 100;
}
#sekkei_sec01 .newContentsList li:first-child div.img::after {
    content: "NEW";
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.1em;
    display: block;
    top: 10px;
	right: calc(100% - 50px);
    transform: rotate(-45deg);
    color: #fff;
    left: 0;
    position: absolute;
    z-index: 101;
}

#sekkei_sec01 .newContentsList div.text{
	height: 160px;
}
#sekkei_sec01 .newContentsList p {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
	overflow: hidden;
}
#sekkei_sec01 .newContentsList p.title{
	font-size: 20px;
	font-weight: 700;
	-webkit-line-clamp: 1;
	display: grid;
	grid-template-columns: 30px 1fr;
	padding: 0 10px;
}
#sekkei_sec01 .newContentsList p.title span{
	line-height: normal;
	box-sizing: border-box;
}
#sekkei_sec01 .newContentsList p.title span:first-child{
	font-size: 8px;
	font-family: serif;
	padding-top: 10px;
	height: 20px;
	line-height: 8px;
	text-align: left;
	font-weight: normal;
}
#sekkei_sec01 .newContentsList p.title span:nth-child(2){
	font-family: serif;
	line-height: normal;
	text-align: center;
	height: 30px;
	line-height: 20px;
	padding-top: 2px;
	font-weight: normal;
}
#sekkei_sec01 .newContentsList p.title span:nth-child(3){
	grid-row: 1 / 3;
	grid-column: 2 / 3;
	line-height: 59px;
	height: 50px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .8em;
	padding-left: 8px;
}
#sekkei_sec01 .newContentsList p.subtext{
	height: 72px;
	line-height: 24px;
	-webkit-line-clamp: 3;
	padding: 0 10px;
	font-size: .8em;
}
#sekkei_sec01 .newContentsList p.subtext span{
	display: none;
}
#sekkei_sec01 .newContentsList p.subtext::before {
	content: "";
	font-family: "Font Awesome 5 Free";
	content: '\f044';
	font-weight: 800;
	font-size: 1.3em;
	margin-right: 10px;
}
#sekkei_sec01 .newContentsList li:after{
	display: block;
	content: "";
	position: relative;
	width: 10px;
	height: 10px;
	border-top: solid 2px #707070;
	border-right: solid 2px #707070;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	bottom: 25px;
	margin: auto;
}
#sekkei_sd01 {
	background-color: #eff7ed;
	max-width: 1000px;
	margin: 0 auto 80px;
	padding: 50px 30px 0 30px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	position: relative;
	box-sizing: border-box;
}
#sekkei_sd01 .container{
	overflow: hidden;
}
#sekkei_sd01 h3:before{
	display: none !important;
	content: "＼ 完成！ ／";
	width: 100%;
	color: #000;
	font-size: 20px;
	display: block;
	position: absolute;
	top: -55px;
	font-family: arial;
}
#sekkei_sd01.file04 h3:before{
	content: "＼ 設計中 ／";
}
#sekkei_sd01 h3.completed:before{
	content: "＼ 完成！ ／";
}
#sekkei_sd01 h3.inProcess:before{
	content: "＼ 設計中 ／";
}
#sekkei_sd01 h2:before{
	content: "テーマ";
	color: #000;
	font-size: 20px;
	margin-right: 20px;
	display: inline-block;
	position: relative;
	top: -5px;
	padding: 10px 20px;
	border: 2px solid #000;
}

#sekkei_sd01 h2 {
	font-size: xx-large;
	font-weight: 700;
	color: #000000 ;
	/*background: #ffffff;*/
	/*border: 2px solid #cccccc;*/
	/*width: 40%;*/
	/*margin: auto;*/
	text-align: center;
	padding: 10px;
	margin-bottom: 50px;
}
#sekkei_sd01 .flex {
	display: flex;
}
#sekkei_sd01 .sdInfo{
	background-color: #ffffff;
	margin: 0;
	width: 50%;
	position: relative;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	height: auto;
	min-height: 400px;
	padding: 20px;
}
#sekkei_sd01 .container h3:first-child{
	position: absolute;
	top: -30px;
	left: -20px;
	background-color: #21af80;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	margin: 0;
	padding: 0;
	line-height: 70px;
	font-family: serif;
}
#sekkei_sd01 .container h3:first-child span{
	display: block;
	font-size: 50px;
	line-height: 0px;
}
#sekkei_sd01 .parents, #sekkei_sd01 .children {
	display: flex;
	justify-content: space-between;
	text-align: center;
}
#sekkei_sd01 .parents li, #sekkei_sd01 .children li{
	margin: 5px;
	font-weight: 700;
	font-size: 16px;
}
#sekkei_sd01 .parents li:first-child div:first-child,#sekkei_sd01 .parents li:nth-child(3) div:first-child{
	background-color: #f2f0e4;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	font-size: 18px;
}
#sekkei_sd01 .parents li div + div, #sekkei_sd01 .children li div + div{
	font-size: 12px;
}
#sekkei_sd01 .parents li:nth-child(2),#sekkei_sd01 .parents li:nth-child(4){
	font-size: 10px;
	border-radius: 15px;
	padding: 10px 15px;
	width: 30%;
	box-sizing: border-box;
	text-align: left;
	position: relative;
	background: #F2F2F2;
}
#sekkei_sd01 .parents li:nth-child(2):before,#sekkei_sd01 .parents li:nth-child(4):before {
  content: "";
  position: absolute;
  top: 50%;
  left: -23px;
  margin-top: -25px;
  border: 8px solid transparent;
  border-right: 18px solid #F2F2F2;
}
#sekkei_sd01 .parents li:nth-child(2) div:first-child, #sekkei_sd01 .parents li:nth-child(4) div:first-child{
	border-bottom: 1px solid #ccc;
	margin-bottom: 5px;
	color: #6a6b6b;
	width: 70%;
}
#sekkei_sd01 .children{
	margin-top: 10px;
}
#sekkei_sd01 .children li{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}
#sekkei_sd01 .children li div{
	width: 100%;
}
#sekkei_sd01 .children li div:first-child{
	background-color: #f2f0e4;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
}
#sekkei_sec01 h2 span {
	padding: 0;
}
#sekkei_sd01 .sdInfo2{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	vertical-align: middle;
	height: auto;
	background: #ccc;
	max-height: 800px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	position: relative;
	border-left: none;
	background-size: cover;
	background-position: center;
}
#sekkei_sd01 .sdInfo2 img {
	width: 96%;
	box-shadow: 1px 2px 3px #808080;
}
#sekkei_sd01 .sdInfo2 p{
	color: #ffffff;
	text-shadow: 1px 2px 3px #808080;
	font-size: x-large;
	font-family: serif;
}
#sekkei_sd01 .progress{
	position: absolute;
	background: #6a6b6b;
	color: #fff;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 800;
	padding: 5px;
	text-align: center;
	top: 15px;
	right: 20px;
	width: 160px;
	display: none;
}
#sekkei_sd01.file01 .sdInfo2{
	background: url(../wp/wp-content/uploads/2022/08/plan01_06.jpg) no-repeat 20% 100%; 
	background-size: cover;
}
#sekkei_sd01.file02 .sdInfo2{
	background: url(../wp/wp-content/uploads/2022/09/plan02_07.jpg) no-repeat 0% 100%; 
	background-size: cover;
}
#sekkei_sd01.file03 .sdInfo2{
	background: url(../wp/wp-content/uploads/2022/09/plan03_04.jpg) no-repeat 0% 100%;
	background-size: cover;
	background-position: 65% 50%;
}
#sekkei_sd01 .sdInfo h2.circleTag{
	background-color: #21af80;
	font-size: 14px;
	color: #ffffff;
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	position: absolute;
	left: 10px;
	top: -50px;
	padding: 0;
	margin: 0;
}
#sekkei_sd01 .sdInfo h4{
	background-color: unset;
	color: #000;
	font-weight: 700;
	font-size: 1.2em !important;
	letter-spacing: .1em;
	width: 60%;
	border-radius: 0;
	font-size: 14px;
	font-weight: 700;
	padding: 5px;
	margin: 30px 0 0px;
	position: relative;
	left: -5px;
	text-align: left;
}
#sekkei_sd01 .sdInfo h4:before {
	content: "";
	font-family: "Font Awesome 5 Free";
	content: '\f044';
	font-weight: 800;
	font-size: 20px;
	margin-right: 10px;
}
#sekkei_sd01 .sdInfo h4.fileTag:before {
	content: "";
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: 800;
	font-size: 20px;
	margin-right: 10px;
}
#sekkei_sd01 .sdInfo h4.fileTag{
	background-color: #fff;
	color: #000;
	font-weight: 700;
	font-size: 1.2em;
	width: 100%;
	position: relative;
	margin: 0 auto 20px;
	top: 0;
	left: 0;
	border: none;
	padding: 0;
	text-align: center;
}
#sekkei_sd01 p.outText{
	text-align: center;
	font-weight: 700;
	padding: 50px;
}

#sekkei_sd01 .fukidashi_square{
	position: absolute;
	margin: auto;
	left: 0;
}

section#sekkei_sd02{
	padding: 0 20px 100px;
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 300px, #efedde 300px, #efedde 100%);
	box-sizing: border-box;
}

#sekkei_sd02 h3{
	color: #000000;
	margin-bottom: 50px;
	font-weight: 700;
}

#sekkei_sd02 h3 span{
	color: #21af80;
	padding: 0 10px;
}

#sekkei_sd02 .thinkList{
	background: #ffffff;
	margin: 20px auto;
	border: solid 5px #c9c3c3;
	padding: 20px 30px;
}

#sekkei_sd02 .thinkList{
	width: 100%;
	box-sizing: border-box;
	text-align: left;
}

#sekkei_sd02 .thinkList li{
	text-indent: -17px;
	padding: 3px 0 3px 20px;
	list-style-type: disc;
	list-style-position: inside;
}
#sekkei_sd02 .thinkList li.headline:before{
	content: "";
	font-family: "Font Awesome 5 Free";
	content: '\f0eb';
	font-weight: 400;
	margin-right: 10px;
	font-size: 20px;
	position: relative;
	color: #000;
}
#sekkei_sd02 .thinkList li.headline {
	font-weight: 700;
	letter-spacing: 1px;
	border-bottom: 3px solid #c9c3c3;
	padding: 8px 0;
	margin: 20px 0;
	text-indent: -25px;
	padding-left: 25px;
}
#sekkei_sd02 .thinkList li.headline:first-child{
	margin-top: 0;
	padding-top: 0;
}
#sekkei_sd02 .thinkList h4:before{
	content: "";
	font-family: "Font Awesome 5 Free";
	content: '\f0eb';
	font-weight: 400;
	margin-right: 10px;
	font-size: 20px;
	position: relative;
	color: #000;
}
#sekkei_sd02 .thinkList h4{
	font-weight: 700;
	letter-spacing: 1px;
	border-bottom: 3px solid #c9c3c3;
	padding: 8px 0;
	margin: 20px 0;
	text-indent: -25px;
	padding-left: 25px;
}
#sekkei_sd02 .thinkList h4{
	margin-top: 0;
	padding-top: 0;
}
#sekkei_sd02 .thinkList ul + h4 {
	margin-top: 40px;
}
#sekkei_sd02 .sekkeiTitle{
	width: 100%;
	background: none;
	margin: 100px auto 0px;
	padding: 10px;
	box-sizing: border-box;
	display: none;
}
#sekkei_sd02 .sekkeiTitle h3,#sekkei_sd02 .sekkeiTitle h4{
	font-weight: 700;
	color: #ffffff;
}
#sekkei_sd02 .sekkeiTitle h4 {
	display: none;
}
#sekkei_sd02 .sekkeiTitle h3:before {
	content: "";
	font-family: "Font Awesome 5 Free";
	content: '\f10d';
	font-weight: 800;
	margin-right: 10px;
	font-size: 18px;
	position: relative;
	top: -10px;
	color: #ccc;
}
#sekkei_sd02 .sekkeiTitle h3:after {
	content: "";
	font-family: "Font Awesome 5 Free";
	content: '\f10e';
	font-weight: 800;
	margin-left: 10px;
	font-size: 18px;
	position: relative;
	top: -10px;
	color: #ccc;
}
#sekkei_sd02 .sekkeiTitle h3 {
	margin: 0;
}
#sekkei_sd02 .largeImg{
	margin-bottom: 40px;
}

#sekkei_sd02 .largeImg img{
	width: 800px;
	height: 400px;
}

#sekkei_sd02 .thumbImg ul{
	background: #fff;
	width: 90%;
	margin: auto;
	padding-bottom: 80px;
}

#sekkei_sd02 .thumbImg li{
	padding: 50px;
	background: #ffffff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
#sekkei_sd02 .thumbImg li img{
	width: 100%;
	max-width: 1000px;
}
/*1121Ã¨Â¿Â½Ã¥Å Â */
#sekkei_sd02 .flex {
    display: flex;
	justify-content: space-around;
}
#sekkei_sd02 {
    width: 100%;
}
#sekkei_sd02 .sekkeiDetail {
    width: 100%;
	max-width: 1500px;
	box-sizing: border-box;
	margin: auto;
}
#sekkei_sd02 .sekkeiDetail div.img {
    width: 46%;
	padding: 20px 30px;
	box-sizing: border-box;
}
/*
.n2-ss-slider-controls-side{
	border: 5px solid #fff;
}
*/
#sekkei_sd02 .sekkeiDetail div.txt {
    width: 50%;
	box-sizing: border-box;
}
#sekkei_sd02 .thinkList{
	padding-top: 20px;
}
#sekkei_sd02 .thinkList.noTxt{
	height: 440px;
	display: flex;
	background-color: rgba(255,255,255,0.3);
}
#sekkei_sd02 .thinkList.noTxt span{
	margin: auto;
	width: 100%;
	text-align: center;
	font-size: 1.5em;
	letter-spacing: .2em;
	font-weight: 700;
	display: block;
	width: 55%;
	line-height: 60px;
	border-bottom: 2px solid #fff;
}
.ms-info {
	width: 100%;
	background: none;
	color: #fff;
	padding: 15px;
	position: absolute;
	top: 0px;
	border: none;
	box-sizing: border-box;
	min-height: 130px;
}
.ms-slide-info {
	background-color: rgba(76,79,81,0.6);
	position: relative !important;
	opacity: 1 !important;
	order: 1;
}
.ms-thumb-list {
	order: 2;
}
.ms-slide {
}
.ms-slide-bgcont {
}
.ms-slide-bgcont img {
    box-sizing: border-box;
    height: auto !important;
	border: 0;
	margin: 0 !important;
}

.box01 {
	position: relative;
	text-align: center;
}
.box01 .title{
	position: absolute;
	right: 0;
	top: 20px;
	padding: 20px 50px;
	background: rgba(255,255,255,0.5);
}
.box01 .photo img{
	height: 600px;
	margin: auto;
}
.box01 .credit{
	font-weight: 700;
	color: #4a4949;
	text-align: right;
	font-size: small;
	font-weight: 700;
	position: absolute;
	right: 0;
	bottom: -7px;
	border-bottom: 1px solid #4a4949;
	text-shadow:0 0 10px #fff;
	line-height: 19px;
	padding: 5px 20px;
}
.box02 {
	padding: 0 30px;
	clear: both;
}
.box02.request {
	display: block;
	overflow: hidden;
}
.flexbox {
	display: flex;
	justify-content: center;
}
#cadphoto_sec02 {
	width: 100%;
    padding-top: 80px;
}

#cadphoto_sec02 .bgcolor{
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 180px, #efedde 180px, #efedde 100%);
}

#cadphoto_sec02 .content{
	width: 90%;
	text-align: left;
	margin: auto;
    padding-bottom: 80px;
}

#cadphoto_sec02 h2 {
	position: relative;
	text-align: right;
	font-size: small;
	padding-right: 90px;
	padding-top: 30px;
	margin-bottom: 20px;
}

#cadphoto_sec02 h2 span {
	position: absolute;
	font-size: 70px;
	font-weight: 700;
	background: none;
	color: #21af80;
	right: 0;
	top: -30px;
	padding: 0;
    font-family: serif;
	text-shadow:0 0 10px #fff;
}

#cadphoto_sec02 h3{
	color: #4a4949;
	font-weight: 700;
}
#cadphoto_sec02 .title h3{
	text-shadow:0 0 10px #fff;
}
#cadphoto_sec02 .box01 h3 {
	margin-top: 40px;
	font-size: x-large;
}
#cadphoto_sec02 .family01 h3{
	position: relative;
	top: 0;
	display: inline-block;
	padding: 5px 15px;
	font-size: 16px;
	margin: 10px 0;
}

#cadphoto_sec02 .family01 {
	margin-top: 50px;
	font-weight: 700;
    overflow: hidden;
}
#cadphoto_sec02 .flexbox div {
	width: 40%;
	border: 2px solid #21af80;
	margin: 50px 20px 50px;
}
#cadphoto_sec02 .flexbox div h4,#cadphoto_sec02 .flexbox div ul{
	position: relative;
	top: -50px;
}
#cadphoto_sec02 .flexbox div:first-child h4{
	background: #21af80;
	color: #fff;
}
#cadphoto_sec02 .flexbox p{
	padding: 0;
	background: none;
}
#cadphoto_sec02 .flexbox h4{
	font-size: 18px;
	color: #21af80;
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-radius: 50%;
	text-align: center;
	border: 2px solid #21af80;
	margin: 0 auto 20px;
	background: #efedde;
}
#cadphoto_sec02 .flexbox ul{
	background-color: transparent !important;
}
#cadphoto_sec02 .flexbox ul li{
	font-weight: 700;
}
#cadphoto_sec02 .flexbox div:first-child li:before{
	content: none;
	border-bottom: 1px solid #ccc;
}
#cadphoto_sec02 .box02 h3 {
	color: #4a4949;
	margin-top: 30px;
}
#cadphoto_sec02 .box02 h3.arrowTag {
	border-left: 10px solid #21af80;
	padding-left: 20px;
	margin-bottom: 20px;
}
#cadphoto_sec02 .box02 h3:first-child {
    margin-top: 30px;
}
#cadphoto_sec02 p, #cadphoto_sec02 .box02 ul{
	background: #ffffff;
	padding: 0 20px;
}
#cadphoto_sec02 .box02 h3 + p,#cadphoto_sec02 .box02 h3 + ul{
	padding: 20px;
	border: 2px solid #21af80;
	background: transparent;
}
#cadphoto_sec02 ul.familyList {
	width: 90%;
	position: relative;
	padding: 0 10px;
	margin: auto;
}
#cadphoto_sec02 ul.familyList li{
	position: relative;
	display: flex;
	flex-direction: column;
	border: none;
	margin-bottom: 15px;
	text-align: center;
	padding: 0;
	text-indent: 0;
}
#cadphoto_sec02 ul.familyList li.pets div{
	font-size: 12px !important;
}
#cadphoto_sec02 ul.familyList li div{
	border: none;
	margin: 0;
	width: 100px;
	text-align: center;
}
#cadphoto_sec02 ul.familyList li div.icon{
	background-color: #ddd;
	border: none;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	font-size: 18px;
	position: relative;
	left: 25px;
}
#cadphoto_sec02 ul.familyList li div:first-child +div{
	color: #4a4949;
}
#cadphoto_sec02 ul.familyList li div.hobby{
	font-size: 12px;
	border-radius: 15px;
	padding: 10px 13px;
	width: calc(100% - 105px);
	box-sizing: border-box;
	text-align: left;
	position: absolute;
	background: #fff;
	top: 0;
	left: 105px;
	border: 1px solid #ccc;
}
#cadphoto_sec02 ul.familyList li div.hobby div{
	border-bottom: 1px solid #ccc;
	margin-bottom: 5px;
	color: #6a6b6b;
	width: 70%;
	text-align: left;
}
#cadphoto_sec02 ul.familyList li div.hobby:before{
  content: "";
  position: absolute;
  top: 45px;
  left: -25px;
  margin-top: -25px;
  border: 8px solid transparent;
  border-right: 18px solid #ccc;
}
#cadphoto_sec02 ul.familyList li div.hobby:after{
  content: "";
  position: absolute;
  top: 45px;
  left: -23px;
  margin-top: -25px;
  border: 8px solid transparent;
  border-right: 18px solid #fff;
}
#cadphoto_sec02 .titleList{
	display: flex;
	width: 100%;
	text-align: center;
	justify-content: center;
}
#cadphoto_sec02 .titleList p{
	width: 10%;
	background: none;
	font-weight: 700;
	margin: 10px auto;
	box-sizing: border-box;
}
#cadphoto_sec02 .titleList p:nth-child(2){
	width: 20%;
	margin-left: 20px;
}
#cadphoto_sec02 .titleList p:nth-child(3){
	width: 80%;
	border: solid 5px #efedde;
	padding: 10px;
	margin: 0 0 0 50px;
	box-sizing: border-box;
	width: 80%;
}
#cadphoto_sec02 .photoList ul{
	background: none;
}
#cadphoto_sec02 .photoList .largeImg img{
	width: 100%;
	background: #ffffff;
	margin: auto;
	box-sizing: border-box;
}
#cadphoto_sec02 .photoList .largeImg{
	width: 80%;
	border: solid 3px #c9c3c3;
	padding: 10px;
	background: #fff;
	margin: 0 0 0 50px;
	box-sizing:border-box;
}
#cadphoto_sec02 .photoList .largeImg p{
	background: none;
	color: #fff;
	font-size: xxx-large;
	font-weight: 700;
	width: 50%;
	position: absolute;
}
#cadphoto_sec02 .photoList .largeImg p:nth-child(2){
	right: 0;
}
#cadphoto_sec02 .photoList .largeImg .description {
	display: block;
}
#cadphoto_sec02 p + ul {
	padding-top: 0;
}

#cadphoto_sec02 .photoList table{
	width: 100%;
	margin-bottom: 30px;
}

#cadphoto_sec02 .photoList th{
	text-align: center;
	width: 3%;
}
#cadphoto_sec02 .photoList td.match:after{
	content: "ÃƒÂ¢Ã¢â‚¬â€œÃ‚Â¼ÃƒÂ§Ã‚Â«Ã‚Â£ÃƒÂ¥Ã‚Â·Ã‚Â¥ÃƒÂ¥Ã‚Â¾Ã…â€™";
	color: #999;
	position: absolute;
	font-weight: 700;
	bottom: -10px;
	left: 30%;
	display: inline-block;
	background: none;
	z-index: 99;
}
#cadphoto_sec02 .photoList td{
	padding: 10px;
	width: 5%;
	position: relative;
	
}
#cadphoto_sec02 .photoList td img{
	border: solid 5px #fff;
}

#cadphoto_sec02 .photoList{
	padding-bottom: 50px;
	display: flex;
	align-items: flex-start;
}
#cadphoto_sec02 .photoList ul{
	width: 10%;
	display: grid;
    grid-template-rows: auto;
    grid-template-columns: 100%;
	padding: 0;
}
#cadphoto_sec02 .photoList.nth2 ul:nth-child(2){
    grid-template-columns: 100%;
	width: 20%;
}
#cadphoto_sec02 .photoList ul:nth-child(2){
    grid-template-columns: 50% 50%;
	width: 20%;
	margin-left: 20px;
}
#cadphoto_sec02 .photoList ul.check{
	width: 5%;
}
#cadphoto_sec02 .photoList .bgcolor{
	background: none;
}
#cadphoto_sec02 .photoList ul li img{
	width: 100%;
	box-sizing: border-box;
	border: 3px solid #efedde;
}
#cadphoto_sec02 .photoList ul li img:hover{
	border: 3px solid #fff;
}
#cadphoto_sec02 .photoList ul li{
	width: 100%;
	opacity: 0.6;
	border: none;
	padding: 0 2px;
	text-indent: 0;
	padding-left: 0;
}
#cadphoto_sec02 .photoList ul li:hover {
	cursor: pointer;
	opacity: 1;
}
#cadphoto_sec02 .photoList ul li:before {
	content: "";
	margin-right: 0;
}
#cadphoto_sec02 .photoList ul li:first-child {
	font-weight: 700;
	text-align: center;
}
#cadphoto_sec02 .photoList ul li.select {
	opacity: 1;
}
#cadphoto_sec02 .photoList ul li.select img {
	border: 5px solid #fff;
}
#cadphoto_sec02 .photoList ul li.noPhoto {
	text-align: left;
	border: none;
}
#cadphoto_sec02 .photoList ul li.noPhoto:hover {
	cursor: auto;
	opacity: 0.6;
}
#cadphoto_sec02 li {
	padding: 6px 0;
	margin: 0;
	border-bottom: 1px solid #aaa;
	text-indent: -1em;
	padding-left: 1em;
}
#cadphoto_sec02 .box02 li:before {
	font-family: "Font Awesome 5 Free";
	content: '\f0da';
	font-size: 16px;
	font-weight: 700;
	color: #21af80;
	margin-right: 10px;
}
#cadphoto_sec02 .mark{
	color: #21af80;
	font-weight: 700;
	padding-bottom: 0;
}

#cadphoto_sec02 .mark + ul{
	padding-top: 0;
}
#cadphoto_sec02 .enquete{
	text-align: left;
	/*background: url(../cadphoto/images/img01_01.jpg) no-repeat 100% 100%;*/ 
	/*background-size: cover;*/
	margin: auto;
	max-width: 1000px;
	background: #fff;
}
#cadphoto_sec02 .enquete .wrapper {
	width: 100%;
	margin: auto;
	padding: 20px;
	box-sizing: border-box;
	#border: 3px solid #c9c3c3;
    position:relative;
    overflow:hidden;
}
#cadphoto_sec02 .enquete .wrapper:before {
    content:"";
    position:absolute;
    top: 0px;
    right:0px;
    border-width:0 40px 40px 0; /* This trick side-steps a webkit bug */
    border-style:solid;
    border-color:#efedde #efedde #c9c3c3 #c9c3c3; /* A bit more verbose to work with .rounded too */
    background:#efedde; /* For Opera when also applying a border-radius */
    display:block; width:0; /* Only for Firefox 3.0 damage limitation */
	box-sizing: border-box;
}
#cadphoto_sec02 .enquete h2:first-child {
	padding-top: 0;
	margin-bottom: 0;
}
#cadphoto_sec02 .enquete h2 {
	position: static;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	padding-right: 0;
}
#cadphoto_sec02 .enq01, #cadphoto_sec02 .enq02, #cadphoto_sec02 .enq03,#cadphoto_sec02 .enq04{
	margin-bottom: 20px;
	#background-color: rgba(255, 255, 255, 0.8);
	padding-top: 10px;
	border-top: 1px solid #c9c3c3;
}
#cadphoto_sec02 .enq04 {
	margin-bottom: 0;
}
#cadphoto_sec02 .enquete table {
	width: 100%;
	margin: auto;
}
#cadphoto_sec02 .enquete table.firstQ {
	width: auto;
}
#cadphoto_sec02 .enquete table i {
	color: #e4be00;
}
#cadphoto_sec02 .enquete table.firstQ i{
	font-size: 20px;
}
#cadphoto_sec02 .enquete table.firstQ td{
	width: 60px;
}
#cadphoto_sec02 .enquete table i.gray {
	color: #ddd;
}

#cadphoto_sec02 .enquete table td,#cadphoto_sec02 .enquete table th{
	width: 20%;
	border-bottom: 1px solid #fff;
	font-size: small;
	line-height: 120%;
	text-align: center;
	font-size: 14px;
}

#cadphoto_sec02 .enquete table th{
	padding: 25px 0;
	text-indent: -1em;
	padding-left: 1em;
}
#cadphoto_sec02 .enquete p {
	background: transparent;
	text-align: center;
}
#cadphoto_sec02 .enquete table td{
	padding: 20px 0;
}
#cadphoto_sec02 .enquete ul {
	display: grid;
	grid-template-columns:50% 50%;
	max-width: 600px;
	width: 90%;
	margin: 0 auto;
	padding: 20px 0;
	background: transparent;
	font-weight: 700;
}
#cadphoto_sec02 .enquete ul li{
	width: 100%;
	text-indent: -1em;
	padding-left: 1em;
	position: relative;
	border-bottom: none;
}
#cadphoto_sec02 .enquete ul li:before{
	font-family: "Font Awesome 5 Free";
	content: '\f0c8';
	font-size: 16px;
	font-weight: 400;
	color:#ccc;
}
#cadphoto_sec02 .enquete ul li.check:after{
	font-family: "Font Awesome 5 Free";
	content: '\f00c';
	font-size: 16px;
	font-weight: 700;
	color: #21af80;
	position: absolute;
	left : 15px;
}

#cadphoto_sec02 table.enqueteList td,#cadphoto_sec02 table.enqueteList th{
	text-align: center;
}
#cadphoto_sec02 table.enqueteList td {
	width: 1%;
}
#cadphoto_sec02 table.enqueteList th:first-child{
	text-align: left;
}

#cadphoto_sec02 .enquete td[colspan]{
	text-align: right;
	padding: 5px;
}

#cadphoto_sec02 .enquete span{
	font-weight: 700;
	color: #888;
	display: block;
	font-size: xx-small;
	line-height: 18px;
	position: absolute;
}
#cadphoto_sec02 .enquete .fiveStarScale {
	display: flex;
}

#cadphoto_sec02 .enquete .fiveStarScale td,#cadphoto_sec02 .enquete .fiveStarScale th{
	border-bottom: 1px solid #aaa;
}
#cadphoto_sec02 .enquete .fiveStarScale div {
	width: 100%;
	padding: 20px 10px 20px 10px;
	box-sizing: border-box;
	border-left: solid 3px #fff;
}
#cadphoto_sec02 .enquete .fiveStarScale div:first-child{
	border-left: none;
}
#cadphoto_sec02 .enquete .fiveStarScale h2{
	text-align: center;
	background: #919191;
	color: #fff;
	padding: 5px 10px;
	display: inline-block;
	font-size: 14px;
	position:relative;
	padding-right: 30px;
}
#cadphoto_sec02 .enquete .fiveStarScale h2:after{
  content: "";
  position:absolute;
  top:0;
  right:0;
  width:0;
  height:0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  border-width: 0px 30px 36px 0px;
}


/* privacy
------------------------------------------------------------*/

#warning {
	width: 90%;
	margin: 50px auto 120px;
}
#warning .bg-wrapper {
	display: flex;
	margin: auto;
	flex-direction: column;
	gap: 40px;
	justify-content: center;
	align-items: center;
	border: 1px solid #35a794;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
#warning h3 {
	background: #35a794;
	color: #fff;
	width: 100%;
	padding: 1em;
	box-sizing: border-box;
	font-weight: 600;
	text-align: center;
}
#warning * {
	font-weight: 500;
	max-width: 1024px;
	margin: auto;
}
#warning .bg-wrapper p {
	margin: 0 40px;
}
#warning .note {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
#warning .note .strong {
	background: #35a794;
	color: #fff;
	padding: .2em 1em;
	font-weight: 600;
	text-align: center;
}
#warning .note p {
	padding-left: 2em;
	position: relative;
}
#warning .note .strong + p::before {
	content: "";
	display: block;
	background: #46a795;
	width: 1rem;
	height: 1rem;
	position: absolute;
	left: 0;
	top: calc(.5rem * 0.95);
	clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
}
#warning .red {
	color: #ec3434;
}

#contact {
    padding: 0 0 80px 0;
}
#contact .wpcf7 {
    width: 90%;
    padding: 20px 20px 60px;
    background: #efedde;
    margin: 30px auto;
    box-sizing: border-box;
}
#contact table{
	width: 100%;
}
#contact table tr{
	border-bottom: 1px dashed #ddd2c1;
}

#contact table th {
    width: 100%;
    vertical-align: top;
    float: left;
    padding-top: 10px;
}
#contact table td {
    width: 100%;
    float: left;
    line-height: 2em;
	padding-bottom: 10px;
	box-sizing:border-box;
}
#contact table span.red{
	color: #ff0000;
	margin-left: 10px;
    font-size: large;
}
#contact input[type=text], #contact input[type=email], #contact input[type=tel] {
    width: 100%;
    padding: 0.5rem 1rem;
	box-sizing: border-box;
}
#contact input[type=checkbox] {
    width: 20px;
}
#contact input[type=submit] {
    width: 50%;
	padding: 5px;
    margin-top: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}
#contact textarea {
    width: 100% !important;
    padding: 5px;
    box-sizing: border-box;
}
#contact .wpcf7-list-item{
	display: block;
}
#contact .wpcf7-acceptance{
	display: inline-block;
}
#contact table + p{
	margin-top: 20px;
}
#contact table a{
	color: #4c4f51;
	text-decoration: underline;
}
#contact .form-btn {
	position: relative;
	height: 60px;
}
#contact .wpcf7-spinner{
	position: relative;
	right: -80%;
	top: 35px;
}
#contact .txt-s{
	font-size: small;
	color: #4c4f51;
}
#contact .required {
	font-weight: 700;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ff0000 !important;
	color: #ff0000 !important;
}
.wpcf7-response-output{
	font-weight: 700;
	padding: 10px !important;
}
.wpcf7-not-valid-tip {
	color: #ff0000 !important;
	font-weight: 700 !important;
}

/* RESPONSIVE
------------------------------------------------------------*/

@media only screen and (min-width: 1200px){
	.inner{
		width: 1024px;
	}
	.br-sp {
		display: none;
	}
}

@media only screen and (min-width: 1001px){
	
  a#menu{
		display:none;
	}	

	.panel{
		display:block !important;
		width: 100%;
	}
	#contact .wpcf7 {
	    width: 650px;
        padding: 20px 40px 60px;
	}

}	

@media only screen and (max-width: 1500px){
	#mainImg .mainTitle div + div{
		font-size: 4em;
	}
	#mainImg p{
		font-size: 1.4em;
	}

}

@media only screen and (max-width: 1024px){
	aside.floating-banner {
		top: 100px;
		transform: unset;
	}
}

@media only screen and (max-width: 1000px){
	#mainImg{
		z-index: -100;
		height: 500px;
	}
	#mainImg .mainTitle div{
		font-size: 1.2em;
	}
	#mainImg .mainTitle div + div{
		font-size: 3em;
	}
	#mainImg p {
		font-size: 1em;
	}
	#mainImg img{
		height: 100%;
		object-fit: cover;
	}
	#mainImg.subpage {
		height: 250px;
	}
	#mainImg.subpage img{
		width: 100%;
		object-fit: cover;
	}	
	h2{
		font-size: large;
	}
    
	#sec01,#sec04 {
		padding-top: 0px;
	}
	.bg_color{
		background: #fff;
		padding-top: 20px;
	}
	.innerS{
		width: 90%;
		padding-bottom: 20px;
		top: 0;
	}
	
	.inner_right,.inner_left{
		width: 95%;
		text-align: center;
		margin: auto;
	}

	.inner_left p {
		padding: 30px 0 ;
    }

	#sec03 .innerS{
		top: 0;
		padding-top: 20px;
	}

	#sec03{
		padding: 0 0 50px 0;
	}
	
	.bg_img img{
		vertical-align: bottom;
	}

	#sec04 img{
		width: 50%;
	}

	.sec04img_line {
	    top: 8%;
	    left: 22%;
	}
	.upperPart {
	    background-color: #efedde;
	    position: relative;
	    height: auto;
		padding-bottom: 30px;
	}
	.upperPart .innerS .inner_left{
		position: relative;
		top: 0;
		right: 0;
	}   
	.upperPart .innerS .inner_right{
		position: relative;
		padding: 0;
		margin: auto;
		width: 90%;
	}
	.lowerPart .innerS{
		width: 100%;
		display: inline-block;
	}
	.col3 {
		background: #efedde;
		padding-bottom: 60px;
		flex-wrap: wrap;
		gap: 3em 1%;
	}
 	.col3 li{
		width: 49%;
		box-sizing: border-box;
	}
	.col3 li .img{
		margin: auto;
		width: 100%;
	}
	.col3 li .img img {
		width: 100%;
	}
	.lowerPart .col3{
		position: static;
		padding-bottom: 60px;
	}
	.col3 a {
		width: 100%;
		
	}
	.aboutSakabe {
		padding: 30px 0 50px;
	}
	.aboutSakabe p{
		padding: 30px 0;
		width: 80%;
		margin: auto;
	}
    
    
	/* header_menu
	-----------------*/

	#header{
		position: fixed;
		width: 100%;
		z-index: 500;
	}
	
	#headerWrap{
		position: relative;
		width: 100%;
		height: 80px;
		background: rgb(255 255 255 / 45%);
	}
	
	#header h1{
		z-index:999;
		max-width: 200px;
		width: 40%;
	}
	
	#header h1 img{
		margin-top: 3px;
		max-height: 45px;
		width: auto !important;
	}
	#header h1 a::before {
		height: 100%;
		width: 100%;
	}
  a#menu{
  	display: inline-block;
  	position: relative;
  	width: 40px;
  	height: 40px;
  	margin: 10px;
	}

	#menuBtn{
  	display: block;
  	position: absolute;
  	top: 60%;
  	left: 50%;
  	width: 18px;
  	height: 2px;
  	margin: -1px 0 0 -7px;
  	background: #000;
  	transition: .2s;
	}

	#menuBtn:before, #menuBtn:after{
  	display: block;
  	content: "";
  	position: absolute;
  	top: 50%;
  	left: 0;
  	width: 18px;
  	height: 2px;
  	background: #000;
  	transition: .3s;
	}

	#menuBtn:before{
  	margin-top: -7px;
	}

	#menuBtn:after{
  	margin-top: 5px;
	}

	a#menu .close{
  	background: transparent;
	}

	a#menu .close:before, a#menu .close:after{
  	margin-top: 0;
	}

	a#menu .close:before{
  	transform: rotate(-45deg);
  	-webkit-transform: rotate(-45deg);
	}

	a#menu .close:after{
  	transform: rotate(-135deg);
  	-webkit-transform: rotate(-135deg);
	}

	.panel{
		width: 100%;
		height: 100%;
		position: fixed;
		left: 0;
		top: 80px;
		z-index: 100;
		display: none;
		touch-action: none;
	}

	#mainnav{
		position: absolute;
		top: 0;
		width: 100%;
		text-align: right;
		z-index:500;
		display: block;
	}

	#mainnav .panel ul{
		background: #fff;
		text-align: left;
		height: 100dvh;
		flex-direction:column;
		align-items: center;
		justify-content:flex-start;
		gap: 0;
		width: 40%;
		min-width: 260px;
		margin-left: auto;
	}
	#mainnav .panel ul::before {
		content: "";
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: rgb(0 0 0 / 35%);
		z-index: -1;
	}
	#mainnav .panel ul li {
		padding: 0;
		width: 100%;
	}
	#mainnav li a{
		position: relative;
		display:block;
		padding: .5em 3em;
		border-bottom: 1px solid #ccc;
		color: #000;
		font-weight: 500;
		line-height: 1.6em;
	}

	#mainnav li a:before{
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 15px;
		width: 6px;
		height: 6px;
		margin: -4px 0 0 0;
		border-top: solid 2px #000;
		border-right: solid 2px #000;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#mainnav .contact_li img{
		display: none;
	}
	#mainnav .contact_li {
		background: #154233;
	}
	#mainnav .contact_li a {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 4em;
	}
	#mainnav .contact_li a {
		color: #fff;
		font-weight: bold;
	}
	#mainnav .panel .contact_li a:hover {
		color: #fff !important;
		opacity: .7;
	}
	#mainnav .contact_li a::before {
		font-family: "Font Awesome 5 Free";
		content: '\f0e0';
		font-weight: 700;
		font-size: 1.5em;
		color: #fff;
		border: none;
		transform: none;
		margin: 0;
		width: 2em;
		height: 2em;
		top: 50%;
		left: 20px;
		transform: translateY(-50%);
		line-height: 2em;
	}
	#mainnav #menuWrap{
		display: flex;
		justify-content: flex-end;
		align-items: center;
		height: 80px;
	}
	section{
		padding-top: 50px;
	}
	section h2 span {
		padding: 0 30px;
	}
    
    #footer_upper img{
        height: 45px;
    }
	#footer_upper .innerS{
		justify-content: center;
		flex-direction: column;
		row-gap: 2em;
		width: 100%;
	}
	#footer_upper .innerS > div,
	#footer_upper .innerS > ul{
		max-width: unset;
		justify-content: center;
		display: block;
	}
	#footer_upper .innerS > ul li {
		width: 100%;
		line-height: 3em;
	}
	
	/* sub_pages
	-----------------*/
	
	.index p{
		margin: 0 0 0 10px;
		font-size: xx-small;
	}
	
	#mainImg .pageDiscription{
		font-size: xx-small;
		bottom: 30px;
		letter-spacing: .1em;
	}

	#mainImg .pageTitle{
		font-size: x-large;
		bottom: 0;
	}
	#about_sec01 .yorisoi_icon.solve{
		transform: rotate(0deg);
		left: 0;
	}
	#about_sec01 .yorisoi_icon.solve::before{
		left: .1em;
	}
	#about_sec01 .yorisoi_icon.solve::after{
		right: 0.1em;
	}
	#about_sec01 .yorisoi_fukidashi > div{
		width: 50%;
	}  
	#about_sec02 .bg_color{
		background-color: #efedde;
		width: 100%;
		z-index: -10;
		height: auto;
	}
	.yorisoi_icon{
		display: inline-block;
		width: 30%;
	}

	.yorisoi_icon.solve{
		width: 100%;
	}
	
	.yorisoi_icon p{
		height: auto;
		line-height: 25px;
		padding: 20px;
	}
	.yorisoi_fukidashi{
		padding: 80px 20px;
		width: 100% !important;
	}
	.about_sec02_inner .inner_text{
		position: relative;
		width: 70%;
		padding: 5%;
		left: 0;
		z-index: 3;
		margin: 20px auto;
		text-align: center;
		top: -10px;
	}
	.about_sec02_inner .inner_text p{
		text-align: left;
	}
	section#about_sec02 {
		padding-top:0;
	}
	
	.about_sec02_01{
		position: relative;
		width: 500px;
		z-index: 3;
		left: -80px;
		top: 40px;
	}

	.about_sec02_line{
		position: absolute;
		width: 70%;
		left: -50px;
		top: 70px;
	}
	#about_sec02 .innerS .inner{
		padding-bottom: 0;
	}
	#about_sec03 .innerS .inner{
		height: auto;
		padding: 10px 0 0 0;
		position: relative;
	}
	#about_sec03 div:nth-child(2){
		width: 90%;
		margin: 0 auto;
	}
	#about_sec03 .innerS {
		width: 100%;
	}
	#about_sec03 .innerS div:first-child img{
		padding: 0;
	}
	#about_sec03 .innerS div:first-child, #about_sec03 .innerS div:nth-child(2){
		width: 60%;
		padding: 1%;
		left: 6%;
		position: relative;
	}
	#about_sec03 .innerS div:nth-child(2){
		width: 40%;
		padding: 1%;
		left: -6%;
		top: -100px;
		position: relative;
	}
	#about_sec03 .innerS p{
		top:0;
	}
	.about_sec03_inner .inner_text {
		position: absolute;
		width: 41%;
		top: 0;
		right: -5%;
	}
	.about_sec03_01 {
		position: relative;
		width: 60%;
		top: 0;
		right: 30%;
	}
	.about_sec03_02 {
		position: relative;
		width: 50%;
		right: 20%;
		top: 0;
	}
	.about_sec_top {
		width: 90%;
	}
	#about_sec05 .onayami{
		width: 100%;
		text-align: center;
	}
	
	#about_sec05 .onayami img{
		width: 60%;
	}
	#sekkei_sd01 {
		width: 100%;
		padding: 80px 10px 0;
	}
	#sekkei_sec01 .newContentsList {
		width: 100%;
		flex-wrap: wrap;
		margin: 0 auto 30px;
		justify-content: center;
		gap: 20px;
		box-sizing: border-box;
	}
	#sekkei_sec01 .newContentsList li{
		width: 30%;
	}
	.innerLink {
		padding-top: 180px;
	}
	#sekkei_sec01 p, #cadphoto_sec01 p{
		width: 70%;
		text-align: left;
	}
	#sekkei_sd01 .flex {
		flex-wrap: wrap;
	}
	#sekkei_sd01 .sdInfo, #sekkei_sd01 .sdInfo2{
		width: 80%;
		max-width: 600px;
		margin: auto;
	}
	#sekkei_sd01 .sdInfo{
		order: 2;
		border: none;
	}
	#sekkei_sd01 .sdInfo2{
		border: 2px solid #ccc;
		border-top: none;
		height: 400px;
		order: 1;
	}
	#sekkei_sd01 .container h3:first-child{
		position: absolute;
		top: -50px;
		left: 0;
		right: 0;
		margin: auto;
	}
	#sekkei_sd01 .container h3:first-child span{
		display: block;
		font-size: 50px;
		line-height: 0px;
	}
	#sekkei_sd01 .sdInfo{
		float: none;
	}
	#sekkei_sd01 h2:before{
		font-size: 14px;
		margin: auto;
		display: block;
		padding: 5px;
		border:none;
		border-bottom: 2px solid #000;
		width: 40%;
	}
	#sekkei_sd02 .flex {
	    display: block;
	}
	#sekkei_sd02 .flex div.img {
		width: 100%;
	}
	#sekkei_sd02 .flex div.txt {
		width: 100%;
	}
	#sekkei_sd02 .sekkeiTitle h2{
		margin-bottom: 0;
	}
	#sekkei_sd02 .sekkeiTitle{
		width: 90%;
		padding: 20px 0;
		box-sizing: border-box;
	}
	#cadphoto_sec02 .content{
		width: 100%;
	}
	#cadphoto_sec02 .photoList td{
		padding: 0px;
		width: 100%;
		border: 20px solid #ffffff;
	}
	#cadphoto_sec02 .flexbox {
		display: block;
		margin: 40px auto 0;
	}
	#cadphoto_sec02 .flexbox div{
		width: 60%;
		margin: 0 auto 40px !important;
		padding: 20px 10px;
	}
	#cadphoto_sec02 .flexbox div ul{
		margin-left: auto;
		padding-left: 60px;
	}
	#cadphoto_sec02 img{
		float: none;
		height: auto;
	}
	#cadphoto_sec02 .flexbox h4{
		margin: 20px auto 20px;
	}
	#cadphoto_sec02 .flexbox div h4,#cadphoto_sec02 .flexbox div ul{
		top: 0px;
	}
	#cadphoto_sec02 .flexbox div h4{
		position: absolute;
		left: -50px;
		top: -40px;
	}
	#cadphoto_sec02 ul.familyList {
	}
	#cadphoto_sec02 ul.familyList li{
		position: relative;
		display: flex;
		margin-bottom: 10px;
	}
	#cadphoto_sec02 ul.familyList li div{
		padding: 0;
		margin: 0 0 10px 0 !important;
	}
	#cadphoto_sec02 ul.familyList li div.icon{
		background-color: #ddd;
		border: none;
		width: 50px;
		height: 50px;
		line-height: 50px;
		border-radius: 50%;
		font-size: 18px;
		position: relative;
		left: 25px;
		margin: 0 !important;
		padding: 0 !important;
	}
	#cadphoto_sec02 ul.familyList li div:first-child +div{
		color: #4a4949;
	}
	#cadphoto_sec02 ul.familyList li div.hobby{
		font-size: 14px;
		border-radius: 15px;
		padding: 10px 15px;
		width: calc(100% - 110px);
		box-sizing: border-box;
		text-align: left;
		position: absolute;
		background: #fff;
		top: 0;
		left: 100px;
		border: 1px solid #ccc;
	}
	#cadphoto_sec02 ul.familyList li div.hobby div{
		border-bottom: 1px solid #ccc;
		margin-bottom: 5px;
		color: #6a6b6b;
		width: 70%;
		text-align: left;
	}
	#cadphoto_sec02 ul.familyList li div.hobby:before{
	  content: "";
	  position: absolute;
	  top: 45px;
	  left: -25px;
	  margin-top: -25px;
	  border: 8px solid transparent;
	  border-right: 18px solid #ccc;
	}
	#cadphoto_sec02 ul.familyList li div.hobby:after{
	  content: "";
	  position: absolute;
	  top: 45px;
	  left: -23px;
	  margin-top: -25px;
	  border: 8px solid transparent;
	  border-right: 18px solid #fff;
	}
	#cadphoto_sec02 .titleList{
		display: none;
	}
	#cadphoto_sec02 .photoList{
		display: block;
	}
	#cadphoto_sec02 .photoList ul{
		width: 100%;
	    grid-template-rows: auto;
	    grid-template-columns: 20% 20% 20% 20% 20%;
		box-sizing: border-box;
	}
	#cadphoto_sec02 .photoList.nth2 ul:nth-child(2){
		width: 100%;
	}
	#cadphoto_sec02 .photoList ul:nth-child(2){
	    grid-template-columns: 20% 20% 20% 20% 20%;
		width: 100%;
		margin-left: 0;
	}
	#cadphoto_sec02 .photoList ul {
		width: 100%;
		margin-bottom: 10px;
	}
	#cadphoto_sec02 .photoList .largeImg{
		margin: auto;
	}
	.box01 .title{
		position: absolute;
		top: -68px;
		padding: 20px 10px;
		background: rgba(255,255,255,0.3);
		width: 100%;
		box-sizing: border-box;
		text-align: right;
	}
	#cadphoto_sec02 .flexbox div {
		margin: 0 0 40px 0;
		position: relative;
	}
	#cadphoto_sec02 .enquete .fiveStarScale {
		display: inline-block;
		width: 100%;
	}
	#cadphoto_sec02 .enquete .fiveStarScale div {
		max-width: 600px;
		width: 90%;
		padding: 20px 0;
		margin: auto !important;
		border: none;
	}
	#cadphoto_sec02 .enquete ul {
		display: block;
		max-width: 600px;
		width: 90%;
		padding: 20px 0;
		margin: auto !important;
		border: none;
	}
	#cadphoto_sec02 .enquete ul li{
		width: 100%;
	}
	#cadphoto_sec02 .enquete .wrapper {
		width: 100%;
	}
}
/*
@media only screen and (min-width: 641px){
	.col2 li{
		width: 60%;
		vertical-align: top;
	}
	.col2 li:first-child{
		width: 35%;
		padding-right: 4%;
	}
}
*/

@media only screen and (max-width: 640px){
	#mainImg {
		justify-content: center;
		padding-bottom: 0;
		font-weight: 400 !important;
		height: 100svh;
	}
	#mainImg:not(.subpage)::before {
		background-position: left;
		animation: movetoRight 30s linear forwards;
	}
	#mainImg::after {
		width: 100%;
		background: linear-gradient(to top, rgb(0 0 0 / 50%), transparent);
	}
	#mainImg .mainTitle div{
		font-size: 1em;
	}
	#mainImg .mainTitle div + div{
		font-size: 2em;
	}
	#mainImg p {
		font-size: .5em;
	}
	#mainnav .panel ul{
		height: calc(100dvh - 80px);
		justify-content: center;
	}
	#mainnav .panel ul li {
		display: flex;
		height: calc(100%/6)
	}
	#mainnav .panel ul li.contact_li a{
		border: none;
		height: unset;
	}
	#mainnav .panel ul li a {
		width: 100%;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	#mainnav .panel ul li a br {
		display: none;
	}
	.inner_left p {
		padding: 20px 10px;
    }
	.col3 {
		justify-content: center !important;
	}
	.col3 li{
		width: 65%;
	}
	.col3 li .img img{
		width: 100%;
	}
	.col3 a {
		order: 1;
	}
	.aboutSakabe{
		width: 100%;
	}
	.aboutSakabe h3{
		font-size: 25px;
	}
	#sec03 .innerS .inner_left{ 
		width: 100%;
	}
	#sec03 .innerS .inner_right{ 
		display: none;
	}
	#sec04_02 .bg_img::before {
	  background-position: top left 58%;
	}
	#about_sec01 .yorisoi_fukidashi > div{
		width: 100%;
	}
	#about_sec01 .yorisoi_icon.solve::before{
		left: 1em;
	}
	#about_sec01 .yorisoi_icon.solve::after{
		right: 1em;
	}
	#about_sec03 .innerS {
		width: 100%;
		display: block;
	}
	#about_sec03 .innerS div:first-child img{
		padding: 0;
	}
	#about_sec03 .innerS div:first-child, #about_sec03 .innerS div:nth-child(2){
		width: 90%;
		padding: 0;
		left: 0;
		position: static;
		margin: auto;
	}
	#about_sec03 .innerS div:nth-child(2){
		width: 90%;
		padding: 0;
		left: 0;
		position: static;
		margin: auto;
	}
/*
	.col3 li{
		line-height: 1.7;
	}
	.col3 img{
		margin: 0 auto;
	}
	.col3 .img{
		padding-top: 80px;
	}
*/
	#gallery li{
		float: none;
		width: 100%;
	}
	#map iframe{
		width: 96% !important;
		left: 2%;
	}
	#sec04_02{
		padding: 50px 10px;
		line-height: 2.5em;
	}
	#about_sec01 div.solve{
		font-size: 20px;
		position: static;
		padding-bottom: 20px;
	}
	
	#about_sec01 div.solve div{
	    font-size: 25px;
	    letter-spacing: 8px;
	    line-height: 2;
	}
	
	#about_sec01 div.solve span.dot_text{
	    padding-top: 0;
	    background: none;
		text-decoration: underline #cccccc;
	}
	.yorisoi_icon{
		width: 90%;
		padding-bottom: 10px;
	}
	.yorisoi_icon img{
		width: 20%;
		float: left;
		width: 80px;
	}
	
	.yorisoi_icon p{
		height: auto;
		text-align: left;
		padding-left: 90px;
	}
	.yorisoi_fukidashi{
		padding: 40px 20px;
	}
	.about_sec02_inner .inner_text{
		width: 90%;
    }
	#about_sec06 .innerS .yorisoi_fukidashi ul{
		width: 100%;
	}
	#sekkei_sd01 .sdInfo{
		background-color: #ffffff;
		padding: 6%;
		width: 100%;
		float: none;
		height: auto;
	}
	#sekkei_sd01 .sdInfo2{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		vertical-align: middle;
		height: 300px;
		border:none;
	}
	#sekkei_sd01 .sdInfo h2.circleTag{
		background-color: #21af80;
		width: 100px;
		height: auto;
		line-height: 60px;
		border-radius: 30px;
		color: #fff;
		left: 10px;
		top: -25px;
	}
	#sekkei_sd02 .thinkList{
		width: 96%;
		text-align: left;
		box-sizing: border-box;
		padding: 20px 10px;
	}
	#sekkei_sd02 .thinkList li{
		text-indent: -23px;
		padding: 3px 0 3px 23px;
	}
	section#sekkei_sd02{
		padding: 0 0 50px;
		background: linear-gradient(180deg, #ffffff 0%, #ffffff 530px, #efedde 300px, #efedde 100%);
	}
	.n2-section-smartslider{
		padding: 0px;
	}
	#sekkei_sec01 .newContentsList {
		width: 100%;
		flex-wrap: wrap;
		margin: 0 auto 30px;
		justify-content: center;
		gap: 10px;
		box-sizing: border-box;
	}
	#sekkei_sec01 .newContentsList li{
		width: 100%;
		height: 160px;
	}
	#sekkei_sec01 .newContentsList li a{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		height: 100%;
	}
	#sekkei_sec01 .newContentsList li a div.img{
		width: 40%;
		overflow: hidden;
		height: 100%;
	}
	#sekkei_sec01 .newContentsList li a div.text{
		width: 60%;
		height: 100%;
	}
	#sekkei_sec01 .newContentsList li a div.text p{
		width: 100%;
	}
	#sekkei_sec01 .newContentsList li:after{
		bottom: 25px;
		margin-left: calc(70% - 10px);
	}
	#sekkei_sec01 p, #cadphoto_sec01 p{
		width: 90%;
	}
	#sekkei_sec01 .sekkeiIntro, #cadphoto_sec01 .cadphotoIntro{
		width: 100%;
	}
	#sekkei_sec01 .sekkeiIntro p, #cadphoto_sec01 .cadphotoIntro p{
		text-align: left;
		width: 90%;
	}
	#sekkei_sec01 h2 span {
		display: block;
		font-weight: 700;
	}
	#sekkei_sd01 .parents{
		display: grid;
		grid-template-columns: 80px 1fr;
	}
	#sekkei_sd01 .parents li{
		justify-self: start;
	}
	#sekkei_sd01 .parents li:nth-child(2),#sekkei_sd01 .parents li:nth-child(4){
		width: 97%;
	}
	.flexbox {
		display:block;
	}
	.box02 {
		padding: 0;
		clear: both;
	}
	#cadphoto_sec02 .flexbox div{
		width: 80%
	}
	#cadphoto_sec02 .flexbox h4{
		color: #21af80;
		border: 2px solid #21af80;
		width: 70px;
		height: 70px;
		font-size: 12px;
		line-height: 70px;
	}
	#cadphoto_sec02 .photoList td:first-child:before {
		border-left: 10px solid black;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
	}
	#cadphoto_sec02 .mark + ul{
		padding-top: 0;
	}
	#cadphoto_sec01 + #cadphoto_sec02{
		padding-top: 0;
	}
	.box01 .credit{
		order: 3;
		font-size: xx-small;
		font-weight: normal;
		position: static;
		bottom: -20px;
		border-top: 2px solid #4a4949;
		border-bottom: 2px solid #4a4949;
		text-shadow: none;
		padding: 5px;
		box-sizing: border-box;
		width: 95%;
		text-align: center;
		margin: auto;
	}
	#cadphoto_sec02 .photoList .largeImg{
		width: 100%;
	}
	#cadphoto_sec02 .box02 {
		padding: 0 10px;
	}
	#cadphoto_sec02 .box01{
		display: flex;
		flex-flow: column;
	}
	#cadphoto_sec02 .box01 .title{
		order: 1;
		position: relative;
		top: 0;
	}
	#cadphoto_sec02 .box01 .photo{
		order: 2;
	}
	#cadphoto_sec02 .flexbox div ul{
		padding-left: 35px;
	}
	#cadphoto_sec02 ul.familyList {
		padding: 0 !important;
	}
	#cadphoto_sec02 .flexbox div h4{
		left: -35px;
		top: -40px;
	}
	#cadphoto_sec02 .enquete .wrapper {
		width: 100%;
		padding: 50px 10px;
	}
	#cadphoto_sec02 .enquete .enqTitle{
		text-align: left;
		padding: 0 10px;
		text-indent: -1em;
		padding-left: 1em;
	}
	#cadphoto_sec02 .enquete .fiveStarScale div {
		padding: 20px 0;
	}
	.backToTop {
		width: 3em;
	}
	.backToTop a::before{
		margin-bottom: -.3em;
	}
	.backToTop a span{
		display: none;
	}
	#footer_upper .logo_list a:first-child {
		padding-right: 0;
	}
    #footer_upper img{
		height: auto;
        max-height: 45px;
		aspect-ratio: 238/65;
    }
	aside.floating-banner {
		top: unset;
		bottom: 0;
		right: unset;
		left: 0;
		width: calc(100% - 45px);
		transform: translateY(100px) !important;
		transition: .5s;
	}
	aside.floating-banner div {
		flex-direction: row;
		width: 100%;
		gap: 0;
	}
	aside.floating-banner a {
		min-height: unset;
		writing-mode: unset;
		padding: 0 .2em;
		height: 45px;
		align-items: center;
		border: thin solid #fff;
        font-size: .8rem;
		flex: auto;
	}
	aside.floating-banner aside {
		opacity: 0;
		transition: .2s;
		bottom: 30px;
		right: 85px;
	}
	aside.floating-banner a[title="contact"]:hover + aside {
		opacity: 1;
	}
	#footer_bottom {
		padding-bottom: 75px !important;
	}
	.backToTop a {
		background: #fff !important;
		border: thin solid #3caf82;
	}
	.backToTop a::before {
		border-color: #3caf82;
	}
	footer aside:has(+ .UpMove) {
		transform: translateY(0) !important;
	}
}