@charset "utf-8";
/* CSS Document */
html {scroll-behavior: smooth;
    scroll-padding-top: 68px;
}
body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	overflow-x: hidden;
}
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	}
a{
	transition: all 0.3s ease;
}
.br-sp{
	display: none;
}
@media (max-width: 767px) {
	.br-pc{
		display: none;
	}
	.br-sp{
		display: block;
	}
}
/* =======================================
    layout
======================================= */
.container{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
	}
/* =======================================
    drawer
======================================= */
.contents {
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* :::::: toggle button :::::: */
#drawer {
	display: none;
}
label {
	cursor: pointer;
	position: fixed;
}
.open {
	z-index: 1000;
	top: 8px;
	right: 8px;
	width: 48px;
	height: 48px;
	border: solid 1px #42210b;
	border-radius: 50%;
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before,
.open::after {
	content: "";
}
.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid #42210b;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
	transform: translateY(-8px);
}
.open::after {
	transform: translateY(8px);
}
.close {
	z-index: 1;
	inset: 0;
	pointer-events: none;
	transition: background .6s;
}
#drawer:checked + .open {
	background: white;
	transform: translateX(-280px);
}
#drawer:checked + .open span {
	transform: scaleX(0);
}
#drawer:checked + .open::before {
	transform: rotate(135deg) scaleX(1.2);
}
#drawer:checked + .open::after {
	transform: rotate(-135deg) scaleX(1.2);
}
#drawer:checked ~ .close {
	pointer-events: auto;
	background: rgba(0,0,0,.3);
}

/* :::::: drawer menu :::::: */
.menu {
	z-index: 1010;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 280px;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: white;
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu h2 {
	color: white;
	font-family: "Ubuntu Condensed", sans-serif;
	font-weight: 400;
	letter-spacing: .1em;
	text-align: center;
}
.menu ul {
	margin: 0;
	padding: 0;
}
.menu li {
	line-height: 1.4;
}
.menu li:not(:first-child) {
	border-top: 1px solid #42210b;
}
.menu a {
	display: block;
	padding: 1em 2em;
	color: #42210b;
	text-decoration: inherit;
	transition: background .6s;
	font-weight: 600;
}
.menu a:hover {
	background: #e1e1e1;
}
#drawer:checked ~ .menu {
	transform: none;
}

/* =======================================
    header
======================================= */
header {
	position: relative;
	padding: .5rem 1rem;
	z-index: 100;
}
/*  ヘッダー固定↓  */
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
}
/*  ヘッダー固定↑  */
.header-inner{
	display: flex;
	justify-content: space-between;
	max-width:100%;
	margin: auto;
	flex-wrap: wrap;
}
.logo{
	border-left: solid 7px #f7931e;
	padding-left: 1rem;
	width: 60%;
}
.logo span{
	font-size:1.25rem;
	display:block;
}
.header-right{
	width:40%;
}
.header-right a{
	font-size: 2rem;
	text-decoration-line: none;
	color: #333;
	font-weight: 600;
	display: flex;
	align-items: center;
	margin-top: 1rem;
	justify-content: flex-end;
	margin-right: 1rem;
}
.header-right a img{
	width:40px;
	margin-right:1rem;
}

/* :::::: nav :::::: */
header nav {
	width: 100%;
}
header nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	justify-content: flex-end;
	font-weight: 600;
}
header nav li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 48px;
	text-decoration: none;
	color: #000;
	transition: background .3s;
	padding: 0 1em;
}
header nav li a:hover {
	background: #efefef;
}
@media (min-width: 960px) {
	.open {
		display: none;
	}
}
@media (max-width: 959px) {
	header nav {
		display: none;
	}
	.header-right{
		display:none;
	}
	.logo{
		width:86%;
		font-size: 1.45rem;
	}
	.logo span{
		font-size:1rem;
	}
}
@media (max-width: 767px) {
	.logo {
    		font-size: 1.25rem;
		border-left: solid 5px #f7931e;
		padding-left: 0.5rem;
	}
	.logo span{
		font-size:0.8rem;
	}
}
/* =======================================
    main
======================================= */
.mainview{
	margin-top: 145px;
    	margin-bottom: 6rem;
	position: relative;
	display: flex;
	justify-content: center;
	gap: 1rem;
}
.mainview img{
	display: block;
	width: 52%;
	height: fit-content;
}
.mainview p{
	font-size: 1.6rem;
	font-weight: 700;
	width: 42%;
	position: relative;
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #42210b;
	line-height: 1.8;
	writing-mode: vertical-rl;
}
.mainview p:before{
	content:"";
	position:absolute;
	width:400px;
	height:300px;
	background-color:#ffe15f75;
	z-index:-1;
	top: 5%;
	border-radius: 15px;
	right: 16%;
}

@media (max-width: 1080px) {
	.mainview p{
		font-size:1.4rem;
	}
}
@media (max-width: 959px) {
	.mainview {
		margin-top: 85px;
	}
}
@media (max-width: 767px) {
	.mainview{
		flex-direction: column;
		margin-bottom: 3rem;
	}
	.mainview img {
		width: 100%;
	}
	.mainview p{
		width: 100%;
		margin-top: 0.5rem;
		flex-direction: column;
		writing-mode: lr;
		line-height: 1.8;
		text-align:center;
		padding-left: 0;
	}
	.mainview p:before {
		display:none;
	}
	.mainview p .nigyome {
    		margin-top: 0;
	}
	.mainview p .sangyome {
    		margin-top: 0;
	}
}
@media (max-width: 600px) {
	.mainview p{
		font-size:1.25rem;
	}
}


.fadein {
    opacity: 0;
    transform: translate(0,100px);
    transition: all 1.5s;
}
.fadein.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
/* =======================================
    concept
======================================= */
.concept{
	background-image: url("https://kawai-care.com/img/bg-about02.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 2rem;
	background-color: rgba(255, 255, 0255, 0.3);
	background-blend-mode: lighten;
}
h2{
	text-align: center;
	font-size: 2rem;
	margin-bottom:3rem;
}
h2 img{
	width:35px;
	display:block;
	margin: 1rem auto;
}
h2 span{
	font-size: 1rem;
	display: block;
}
.concept-text li{
	background-color: #ffffff;
	padding: 2rem;
	box-shadow: 0px 0px 6px #ccc;
	width: 760px;
	border-radius: 15px;
	margin:1.5rem auto;
	font-size: 1.45rem;
	margin-bottom: 0.8rem;
	line-height: 1.4;
	font-weight: 600;
	list-style-type: none;
	color: #42210b;
}

@media (max-width: 767px) {
	.concept{
		padding: 0.5rem;
	}
	.concept-text li{
		padding: 1.5rem;
		width: 100%;
		margin: 2rem auto;
		font-size: 1.125rem;
	}
}

/* =======================================
    feature
======================================= */
#feature{
	padding-top: 5rem;
}
.wrap-feature h4{
	font-size: 1.6rem;
	text-align: center;
	margin-top: 5rem;
}
.concept-box{
	display: flex;
	list-style-type: none;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}
.concept-box img{
	max-width:100%;
}
.concept-box li{
	box-shadow: 0px 0px 8px #bbb;
	border-radius: 20px;
	padding: 1.5rem;
	width: 31%;
	text-align: center;
}
.concept-box p{
	text-align: center;
	font-size: 1.125rem;
	font-weight: 600;
	color: #42210b;
}
.concept-box span{
	font-size: 0.8rem;
	display: block;
	text-align: left;
	margin-top: 0.5rem;
}
.feature-staff{
	max-width: 1024px;
	background-color: #fffbe8;
	padding: 3rem;
	margin: 4rem auto 0;
	border-radius: 15px;
}
.feature-staff h3{
	margin: 0 auto 1.5rem;
	font-size: 1.65rem;
	position: relative;
	padding: 0 45px;
	width: fit-content;
	color: #42210b;
}
.feature-staff h3:before, 
.feature-staff h3:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 40px;
	height: 2px;
	background-color: #f7931e;
	transform: rotate(60deg);
}
.feature-staff h3:before {
	left:0;
}
.feature-staff h3:after {
	right: 0;
	transform: rotate(-60deg);
}
.feature-staff ul{
	display:flex;
	list-style-type: none;
	gap: 2rem;
}
.feature-staff li{
    font-size: 1rem;
    font-weight: 500;
    width: 31%;
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
}
.feature-staff li span{
	font-weight: 700;
	color:#b32727;
        font-size: 1.125rem;
}

@media (max-width: 767px) {
	.concept-box{
		margin-top: 2rem;
		flex-direction: column;
	}
	.concept-box li{
		display: flex;
		width: 100%;
		flex-direction: column;
		align-items: center;
	}
	.concept-box img{
		width:90%;
	}
	.feature-staff{
		padding: 1.5rem;
	}
	.feature-staff h3{
		font-size:1.25rem;
		text-align:center;
		margin: 0 auto 1rem;
	}
	.feature-staff ul{
		flex-direction: column;
		gap: 1rem;
	}
	.feature-staff li{
		width:100%;
	}
}
/* =======================================
    SERVICE
======================================= */
#service{
	margin: 6rem auto;
}
.service-list{
	display: flex;
	list-style-type: none;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}
.service-list li{
	width:31%;
	display: flex;
	flex-direction: column;
}
.service-list li h3{
	text-align: center;
	margin: 0.5rem auto;
	color: #42210b;
	line-height: 1.4;
	height: 50px;
	display: flex;
	align-items: center;
}
.service-list li img{
	max-width:100%;
}

.service-area{
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 3rem auto;
}
.area-inner{
	width: 55%;
	border: solid 6px #f8d674;
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	height: 220px;
	color: #42210b;
	font-size:1.25rem;
	font-weight: 600;
}
.bg-green{
	background-color: #488f30;
	border-radius: 20px;
	color: white;
	padding: 0.3rem;
	width: 90%;
	margin: 0 auto 1rem;
	font-size: 1.125rem;
}
.area-inner ul{
	max-width: 350px;
	margin: auto;
}
.area-inner li{
	width: fit-content;
	margin-left: 1.5rem;
	text-align: left;
	line-height: 1.3;
	margin-top: 0.5rem;
}


.btn-googlemap{
	display: block;
	max-width: 12rem;
	text-align: center;
	text-decoration: none;
	color: #000;
	border: solid 1px #000;
	padding: .5rem;
	margin-top: 1rem;
}
@media (max-width: 960px) {
	.area-inner{
		font-size:1.125rem;
		height: 210px;
	}
}
@media (max-width: 767px) {
	.service-list{
		gap:1rem;
	}
	.service-list li {
    		width: 47%;
	}
	.service-list li h3{
		font-size:1.125rem;
	}
	.service-area{
		flex-direction: column;
	}
	.area-inner{
		width: 100%;
		height:100%;
	        padding: 1.5rem 1rem;
	}
}
@media (max-width: 470px) {
	.service-list li:nth-child(3) h3,
	.service-list li:nth-child(4) h3{
		height: 75px;
	}
}
/* =======================================
    FLOW
======================================= */
#flow{
	background-color: #ffe15f24;
	padding: 4rem 0;
}
.flow-list dl{
	max-width: 1024px;
	background-color: white;
	padding: 1rem;
	border-radius: 20px;
	display: flex;
	align-items: center;
	margin: 1.5rem auto;
}
.flow-list dt{
	width:35%;
	text-align: center;
	font-size: 1.45rem;
	font-weight: 600;
	color: #42210b;
}
.wrap-flow p{
	text-align: center;
	margin-top: 5rem;
	font-size: 1.25rem;
	font-weight: 700;
}
.wrap-flow a{
	width: 630px;
	display: flex;
	margin: 1rem auto;
	background-color: #ffe15f;
	padding: 0.5rem;
	text-decoration-line: none;
	font-size: 2rem;
	font-weight: 700;
	color: #42210b;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
}
.wrap-flow a:hover{
	background-color: #f1d86b;
}

.wrap-flow a span{
	font-size: 1.125rem;
	background-color: white;
	padding: 0.3rem;
	border-radius: 20px;
	width: 150px;
	text-align: center;
	margin-right: 5rem;
}
.wrap-flow a div{
	display: flex;
	align-items: center;
}
.wrap-flow a img{
	width: 35px;
	margin-right: 0.6rem;
}

@media (max-width: 767px) {
	.flow-list dl{
		flex-direction: column;
	}
	.flow-list dt{
		width: 100%;
		font-size: 1.25rem;
	}
	.wrap-flow a {
    		width: 100%;
		font-size: 1.45rem;
	}
	.wrap-flow a span{
		margin-right: 1rem;
		font-size: 0.9rem;
		width: 100px;
	}

}
@media (max-width: 640px) {
	.wrap-flow a{
		flex-direction: column;
	}
}
/* =======================================
    ABOUT
======================================= */
#about{
	margin-top: 4rem;
}
.about-list{
	border-bottom: solid 1px #ccc;
	max-width: 800px;
	margin: 4rem auto;
}
.about-list dl {
	border-top: solid 1px #ccc;
	display: flex;
	padding: 1.5rem;
	font-size: 1.125rem;
	font-weight: 500;
}
.about-list dt {
	display: block;
	width: 300px;
	padding-left: 2rem;
}
.about-list dd {
	width: 100%;
}
.about-img{
	display: flex;
	gap: 1rem;
	margin-bottom:2rem;
	justify-content: center;
}
.about-img img{
	width: 32%;
	height: fit-content;
}
@media (max-width: 767px) {
	.about-list dl{
		padding:0.5rem;
	}
	.about-list dt {
		width: 180px;
		padding-left: 0;
	}
	.about-img{
		flex-direction: column;
	}
	.about-img img{
		width:100%;
	}
}
/* =======================================
    footer
======================================= */
footer{
	background-color: #52b25d;
	text-align: center;
	padding: .5rem 1rem;
}
.pagetop{
	position: fixed;
	bottom: 2rem;
	right: 0;
	z-index: 100;
	display: flex;
	width: 50px;
	height: 90px;
	text-decoration: none;
	color: #000;
	background-color: #fbfbfbcf;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	font-weight: 500;
	gap: 0.2rem;
}
.pagetop img{
	width:40px;
}

.fixed-bottom{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: none;
}
.fixed-bottom a{
	width: 100%;
	text-decoration: none;
	color: #42210b;
	background-color: #ffe15f;
	padding: 0.75rem;
	display: flex;
	font-size: 1.25rem;
	font-weight: 700;
	justify-content: center;
	align-items: center;
}
.fixed-bottom a:hover{
	background-color: #f1d86b;
}
.fixed-bottom a img{
	width:30px;
	margin-right:0.3rem;
}

@media (max-width: 767px) {
	footer{
		padding-bottom: 4rem;
	}
	.pagetop{
		bottom: 4rem;
	}
	.fixed-bottom{
		display: block;
	}
}