@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;700&display=swap');
/* CSS Document */
html {
	scroll-behavior: smooth;
}
body {
	font-size: 16px;
	line-height: 1.6;
	font-family: "Noto Sans JP", sans-serif;
	margin: 0;
	overflow-x: hidden;
}
*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	}
/* =======================================
    共通
======================================= */
a{
	transition: all 0.3s ease;
}
.mincho{
	font-family: "Zen Old Mincho", serif;
}
.auto-br{
	display: inline-block;
}
.container{
	max-width: 60rem;
	margin: 0 auto;
	padding: 0 1rem;
}
h1{
	font-size: 3rem;
	font-weight: normal;
	text-align: center;
	margin-bottom: 2rem;
}
h1 .en{
	display: block;
	font-size: 1rem;
	color: #979797;
}
.fc-red{
	color: #bf272d;
}
@media screen and (max-width: 767px) {
	h1{
		font-size: 2rem;
	}
}
/* =======================================
    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: 102;
	top: 8px;
	right: 8px;
	width: 48px;
	height: 48px;
	border-radius: 48px;
	background: #005bac;
	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 white;
	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 {
	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: 103;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 280px;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: rgba(0,0,0,.8);
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu ul {
	margin: 0;
	padding: 0;
}
.menu li {
	line-height: 1.4;
}
.menu li:not(:first-child) {
	border-top: 1px solid rgba(255,255,255,.6);
}
.menu a {
	display: block;
	padding: 1em 2em;
	color: white;
	text-decoration: inherit;
	transition: background .6s;
}
.menu a:hover {
	background: black;
}
#drawer:checked ~ .menu {
	transform: none;
}
/* :::::: nav :::::: */
header{
	display: flex;
	align-items: flex-end;
	background-color: #fff;
	padding: 1rem 1rem 0;
}
.logo{
	width: 240px;
}
header nav {
	background: #fff;
	width: 100%;
	margin: 0 auto;
}
header nav ul {
	display: flex;
	list-style: none;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	white-space: nowrap;
}
header nav li {
	flex-basis: 20%;
}
header nav li a {
	display: grid;
	place-items: center;
	height: 48px;
	color: #000;
	padding: 0 1em;
	text-decoration: inherit;
	transition: background .3s;
}
header nav li a:hover {
	background: #00a79b;
}

/* :::::: change mechanism :::::: */
header nav {
	overflow: hidden;
	transition: height .6s cubic-bezier(0.215, 0.61, 0.355, 1), margin .6s cubic-bezier(0.215, 0.61, 0.355, 1), opacity .6s;
}
@media screen and (min-width: 768px) {
	.open {
		transform: translateY(calc(-100% - 8px));
	}
	header nav {
		height: 48px;
		transition-delay: 0s, 0s, .4s;
	}
}
@media screen and (max-width: 767px) {
	header{
		padding: .5rem;
	}
	header nav {
		height: 0;
		margin-top: 0;
		opacity: 0;
		pointer-events: none;
		transition-delay: .4s, .4s, 0s;
	}
}

/* =======================================
    header PC 固定
======================================= */
header.m_fixed {
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 0 2px 5px 0px rgba(0, 0, 0, .2);
	z-index: 100;
}

/* =======================================
    mainview
======================================= */
.mainview{
	display: block;
	width: 100%;
}
/* =======================================
    あいさつ
======================================= */
#greeting{
	position: relative;
	padding: 4rem 0;
}
#greeting::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 65%;
	background-color: #e9eef0;
	z-index: -1;
}
#greeting h1{
	font-size: 2rem;
}
.gre-box{
	background-color: #fff;
	border-radius: 2rem;
	box-shadow: 2px 2px 4px #aaa;
	padding: 4rem 1rem;
}
.gre-box p{
	max-width: 33rem;
	line-height: 2;
	margin: 0 auto 2rem;
}
.gre-box p:last-child{
	margin-bottom: 0;
}
@media screen and (max-width: 767px) {
	#greeting{
		padding: 2rem 0;
	}
	#greeting h1{
		font-size: 1.5rem;
	}
	.gre-box{
		padding: 2rem 1.5rem;
	}
}
/* =======================================
    事業内容 service
======================================= */
.title01::after{
	content: "";
	display: block;
	width: 6rem;
	height: 4px;
	background-color: #bbcad2;
	margin: .5rem auto 0;
}
.industry{
	margin-bottom: 4rem;
}
.beauty{
	background-color: #e9eef0;
	padding: 3rem 0;
}
.ser-box01{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 5rem;
	margin-bottom: 4rem;
}
.beauty .ser-box01{
	flex-direction: row-reverse;
}
.ser-box01 h2{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 17rem;
	height: 14rem;
	font-size: 3rem;
	font-weight: normal;
	line-height: 1.4;
	background-image: radial-gradient(circle at 0% 0%, rgba(0, 228, 205, 1), rgba(165, 226, 228, 1) 22%, rgba(212, 226, 235, 1));
}
.beauty .ser-box01 h2{
	background-image: radial-gradient(circle at 95% 95%, rgb(231 107 154), rgba(240, 165, 188, 1) 10%, rgba(245, 200, 210, 1) 15%, rgba(249, 225, 226, 1) 22%, rgba(250, 232, 230, 1));
}
.ser-box01 h2 span{
	display: block;
	font-size: 1rem;
}
.gra-box{
	flex: 1;
	-webkit-background-clip: text;
	background-image: radial-gradient(circle at 54% 0%, rgba(0, 176, 158, 1), rgba(0, 5, 5, 1) 40%, rgba(0, 0, 0, 1));
	-webkit-text-fill-color: transparent;
}
.beauty .gra-box{
	background-color: #e9eef0;
	background-image: radial-gradient(circle at 10% 0%, rgba(227, 67, 127, 1), rgba(0, 5, 5, 1) 40%, rgba(0, 0, 0, 1));
}
.gra-box::before{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle at 54% 0%, rgba(0, 176, 158, 1), rgba(0, 5, 5, 1) 40%, rgba(0, 0, 0, 1));
	mix-blend-mode:screen;
	pointer-events: none;
}
.gra-box h3{
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: .5rem;
}
.ser-box02{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}
.ser-box02 h3{
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
}
.catch{
	font-size: 1.25rem;
	font-weight: 700;
	color: #005bac;
	margin-bottom: 1rem;
}
.ser-box02 img{
	width: 400px;
	max-width: 100%;
}
@media screen and (max-width: 767px) {
	.ser-box01{
		gap: 1rem;
		margin-bottom: 2rem;
	}
	.ser-box01 h2{
		width: 12rem;
		height: 11rem;
		font-size: 2.25rem;
	}
	.ser-box01 h2 span{
		font-size: .75rem;
	}
	.gra-box h3{
		font-size: 1.5rem;
	}
	.ser-box02{
		flex-direction: column-reverse;
		gap: 1rem;
	}
	.beauty .ser-box02{
		flex-direction: column;
	}
	.ser-box02 h3{
		margin-bottom: 1rem;
	}
	.catch{
		margin-bottom: .5rem;
	}
}
@media screen and (max-width: 640px) {
	.beauty{
		padding: 1rem 0;
	}
	.ser-box01{
		flex-direction: column;
		margin-bottom: 1rem;
	}
	.beauty .ser-box01{
		flex-direction: column;
	}
	.ser-box01 h2{
		width: 100%;
		height: 7rem;
		font-size: 2rem;
	}
	.gra-box h3,
	.ser-box02 h3{
		font-size: 1.25rem;
	}
}
/* =======================================
    企業概要 company
======================================= */
#company{
	padding: 3rem 0;
}
#company dl{
	display: flex;
	border-bottom: solid 1px #333;
	padding: 1rem 0;
}
#company dt{
	width: 16rem;
	padding-left: 3rem;
}
#company dd{
	flex: 1;
}
#company ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
#company li{
	position: relative;
	padding-left: 1rem;
}
#company li::before{
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 767px) {
	#company dt{
		width: 10rem;
		font-weight: 700;
		padding-left: 1rem;
	}
}
@media screen and (max-width: 560px) {
	#company dl{
		flex-direction: column;
	}
	#company dl{
		padding: .5rem 0;
	}
	#company dt,
	#company dd{
		padding-left: .5rem;
	}
}
/* =======================================
    アクセス access
======================================= */
#access{
	padding: 3rem 0;
}
.map-box{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.map{
	width: 48%;
	text-align: center;
}
.map iframe{
	width: 100%;
	margin: 1rem 0;
}
address{
	font-style: normal;
}
@media screen and (max-width: 767px) {
	.map-box{
		flex-direction: column;
		gap: 4rem;
	}
	.map{
		width: 100%;
	}
}
/* =======================================
    お問い合わせ contact
======================================= */
#contact{
	background-color: #e9eef0;
	padding: 3rem 0;
}
#contact p{
	text-align: center;
}
form#mail_form .policy{
	width: 90%;
	height: 138px;
	background-color: #f0f0f0;
	border-radius: 1rem;
	margin: 1rem auto;
	padding: 1rem 2rem;
	box-sizing: border-box;
	overflow-y: scroll;
}
form#mail_form .policy section{
	margin-bottom: 1rem;
}
#contact .policy p{
	text-align: left;
}
/* =======================================
    footer
======================================= */
footer{
	text-align: center;
	color: #fff;
	background-color: #000;
	text-align: center;
	padding: 3rem 1rem 1rem;
	}
footer a{
	text-decoration: none;
	color: #fff;
}
.footer-nav{
	margin-bottom: 2rem;
}
.footer-nav li{
	display: inline-block;
	margin-right: 2rem;
}
.footer-nav li:last-child{
	margin-right: 0;
}
.footer-nav a:hover{
	color: #00a79b;
}
.footer-logo{
	display: block;
	max-width: 100%;
	margin: 0 auto 2rem;
}
@media screen and (max-width: 767px) {
	.footer-nav li{
		display: block;
		text-align: left;
		border-bottom: solid 1px #333;
		margin-right: 0;
		padding: .5rem;
	}
	.footer-nav a{
		display: block;
	}
}