@charset "utf-8";
/****************************************************************************
   Cascade Layers
--------------------------------------------------------
   Last up date   : 2025.12.08
****************************************************************************/
@layer reset, base, layout, components, utilities, animations;
@import url("reset.css");

.m-plus-rounded-1c-regular {
	font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.kaisei-opti-regular {
  font-family: "Kaisei Opti", serif;
  font-weight: 400;
  font-style: normal;
}

@layer reset {
@media screen and (max-width:850px) {
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	font-size: 14px;
	color: var(--color-gray1);
	letter-spacing: 1px;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility
	-webkit-overflow-scrolling: touch;
}

img, svg {
  vertical-align: middle
}

ol, ul {
  list-style: none
}

[data-whatinput=mouse] :focus, [data-whatinput=touch] :focus {
  outline: 0
}

body>img {
  display: block;
  height: 0!important;
  font-size: 0
}
} /**** END media screen *****/
}/********** END of reset **********/


/* # =================================================================
   # 共通設定
   # ================================================================= */
body {
      font-family: sans-serif;
      color: #333;
}

/*-- 共通カラー --*/
:root {
  --base1: #762B1B;
  --base2: #8EC54A;
  --pink0:#C7025D;
  --pink1:rgba(234,94,122,1);
  --pink2:rgba(234,94,122,0.21);
  --pink3:#F096A7;
  --green1:rgba(42,167,56,1);
  --green2:rgba(42,167,56,0.21);
  --green3: #8EC54A;
  --yellow1:rgba(213,178,0,1);
  --yellow2:rgba(213,178,0,0.21);
  --blue1:#00AAE8;
}
    

    
header, 
section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
	position: relative;
	display: block;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}
header {
	@media screen and (max-width:850px) {
	height: 70px;
	}
}

header ul.subBtn {
	position: absolute;
	right: 0px;
	top: 0px;
	display: flex;
	@media screen and (max-width:850px) {
	display: none;
	}
}
header ul.subBtn li {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
header ul.subBtn li a {
	position: relative;
	display: block;
	color: #FFF;
	padding: 10px 20px 10px 40px;
	line-height: 1;
	transition: all 0.5s;
}
header ul.subBtn li:hover {
	opacity: 0.7;
}
header ul.subBtn li:nth-child(1) {
	background-color: var(--pink0);
	margin-right: 15px;
}
header ul.subBtn li:nth-child(2) {
	background-color: var(--blue1);
}
header ul.subBtn li a::after {
	content: "＞";
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -9px;
	font-size: 18px;
	color: #FFF;
	transition: all 0.5s;
}
header ul.subBtn li:hover a::after {
	left: 15px;
}

header .headerBlock {
	display: flex;
	justify-content: space-between;
	padding-top: 30px;
	padding-bottom: 30px;
	@media screen and (max-width:850px) {
	padding-left: 10px;
	}
}
header .headerBlock .logo {
	width: 45%;
	@media screen and (max-width:850px) {
	width: 60%;
	}
} 
header .headerBlock .logo h1 {
	color: var(--base1);
	/*font-family: "Kaisei Opti", serif;*/
/*	font-family: "M PLUS 1 Code", monospace;*/
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: bold;
	font-size: 52px;
	font-size: 24px;
	font-size: clamp(1.5rem, -2.75rem + 8vw, 3.25rem);
	letter-spacing: 0em;
		@media screen and (max-width:850px) {
			letter-spacing: 0em;
		}
	margin-top: -25px;
} 
header .headerBlock .logo h1 span {
	font-size: 20px;
	font-size: 14px;
	font-size: clamp(0.875rem, -0.036rem + 1.71vw, 1.25rem);
	color: #000;
	letter-spacing: 0.1em;
}
header .headerBlock .contact {
	margin-top: 20px;
	z-index: 10;
	@media screen and (max-width:850px) {
	width: 45%;
	position: fixed;
	bottom: 0;
	}
}
header .headerBlock .contact a {
	display: block;
	background: var(--pink1);
	font-family: "M PLUS Rounded 1c", sans-serif;
	color: #FFF;
	text-align: center;
	font-size: 24px;
	border-radius: 50px;
	padding: 10px 50px 10px 20px;
	position: relative;
	margin-top: 10px;
	box-shadow: 3px 3px 0px 0px #999;
	transition: all 0.5s;
	@media screen and (max-width:850px) {
		font-size: 16px;
		padding: 10px 40px 10px 10px;
		border-radius: 10px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		height: 40px;
	}
}
header .headerBlock .contact a:hover {
	opacity: 0.7;
}
header .headerBlock .contact a::after {
	content: "";
	background: url(../../images/arrow1.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 10px;
	top:50%;
	margin-top: -15px;
	@media screen and (max-width:850px) {
		width: 20px;
		height: 20px;
		right: 10px;
		margin-top: -10px;
	}
}
header .headerBlock .telInfo {
	margin-top: 20px;
	@media screen and (max-width:850px) {
		width: 45%;
		z-index: 100;
		position: fixed;
		bottom: 0;
		right: 0;
		background: var(--blue1);
		right: 10px;
		border-radius: 10px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		text-align: center;
		padding: 5px 0px 5px 0px;
		height: 40px;
	box-shadow: 3px 3px 0px 0px #999;
	}
}
header .headerBlock .telInfo p {
	font-size: 20px;
	@media screen and (max-width:850px) {
		font-size: 10px;
	}
}
header .headerBlock .telInfo a {
	font-size: 38px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: bold;
	color: #E60012;
	@media screen and (max-width:850px) {
	font-size: 16px;
	color: #FFF;
	}
}





header nav {
    width: 100%;
    margin-bottom: 15px;
}
header nav ul {
	display: flex;
	justify-content: space-between;
}
header nav ul li {
	font-size: 20px;
	padding: 0 0px 0 0px;
	margin: 0 0px 0 0px;
	margin-right: 0px;
    width: 100%;
	border-left: 1px solid #999 !important;
}
header nav ul li:nth-child(5) {
	border-right: 1px solid #999 !important;
}
header nav ul li a {
	display: block;
	width: 100%;
	text-align: center;
	padding: 10px 0 10px 0;
	position: relative;
	font-weight: bold;
	transition: .3s;
}
header nav ul li a::after {
  content: '';
  display: block;
  height: 1px;
  width: 80%;
  background: var(--green1);
  position: absolute;
  bottom: 0;
  left: 10%;
  transform: scale(0, 1);
  transition: .3s;
}
header nav ul li a:hover {
	color: var(--green1);
}
header nav ul li a:hover::after {
  transform: scale(1, 1);
}

.concept > header nav ul li:nth-child(1) a {
	background: var(--green3);
	color: #FFF;
}
.concept > header nav ul li:nth-child(1) a::after { display: none; }

.facility > header nav ul li:nth-child(2) a {
	background: var(--green3);
	color: #FFF;
}
.facility > header nav ul li:nth-child(2) a::after { display: none; }

.flow > header nav ul li:nth-child(3) a {
	background: var(--green3);
	color: #FFF;
}
.flow > header nav ul li:nth-child(3) a::after { display: none; }

.price > header nav ul li:nth-child(4) a {
	background: var(--green3);
	color: #FFF;
}
.price > header nav ul li:nth-child(4) a::after { display: none; }

.service > header nav ul li:nth-child(5) a {
	background: var(--green3);
	color: #FFF;
}
.service > header nav ul li:nth-child(5) a::after { display: none; }



/* # =================================================================
   # ハンバーガーメニュー
   # ================================================================= */
/* overlay-styles.css */
@media screen and (max-width:850px) {
.hamburger-overlay {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  background: var(--base1);
  cursor: pointer;
  border-radius: 10px;
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #FFF;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--base1);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: 0.6s; }
.nav-overlay.active .nav-overlay__item:nth-child(7) { transition-delay: 0.7s; }
.nav-overlay.active .nav-overlay__item:nth-child(8) { transition-delay: 0.8s; }

header nav {
position: absolute;
	top: 30%;
	right: 0;
}
header nav ul {
	display: block;
}
header nav ul li {
	font-size: 14px;
	padding: 0 0px 0 0px;
	margin: 0 10px 0 0px;
	border: none;
	border-bottom: 1px solid #FFF;
}
header nav ul li a {
	display: block;
	width: 100%;
	padding: 10px;
}
header nav ul li a:hover {
	text-decoration: none;
	color: var(--yellow);
}

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: var(--yellow1);
}
} /**** END media screen *****/


/* --- pagetop --- */
.pagetop {
	position: fixed;
	bottom: 5px;
	right: 5px;
	opacity: 0;
	filter: alpha(opacity=0);
	transform: scale(0.8);
	transition: all .6s;
	z-index: 1000;
	border-radius: 10px;
		@media screen and (max-width:850px) {
			bottom: 50px;
		}
}

.pagetop a {
	display: table-cell;
	width: 65px;
	height: 65px;
	text-align: center;
	vertical-align: middle;
	color: #fff !important;
	font-size: 14px;
	text-decoration: none;
	background: var(--base1);
	-webkit-border-radius: 0px;
	border: 1px solid #FFF;
	border-radius: 10px;
}
.pagetop a img {
	width: 100%;
}
.pagetop.show {
	opacity: 1;
	filter: alpha(opacity=80);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
}

.pagetop a:hover {
	text-decoration: none;
	opacity: 0.7;
	transition: all .6s;
}

.wideBtn {
	width: 100%;
	max-width: 1000px;
	margin: 30px auto;
	@media screen and (max-width:850px) {
	max-width: 90%;
	}
}
.wideBtn a {
	width: 100%;
	display: block;
	padding: 20px;
	border-radius: 30px;
	background: var(--base1);
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 900;
	font-size: 46px;
	font-size: 34px;
	font-size: clamp(2.125rem, 0.304rem + 3.43vw, 2.875rem);
	text-align: center;
	box-shadow: 3px 3px 0px 0px #999;
	transition: all 0.5s;
}
.wideBtn a:hover {
	opacity: 0.7;
}
.wideBtn a strong {
	color: #FFF34E;
	display: inline-block;
	margin-right: 50px;
	font-weight: bold;
	@media screen and (max-width:850px) {
			font-family: "M PLUS Rounded 1c", sans-serif;
			display: block;
			margin-right: 0px;
	}
}
.wideBtn a span {
	color: #FFF;
	font-size: 50px;
	font-size: 40px;
	font-size: clamp(2.5rem, 0.982rem + 2.86vw, 3.125rem);
}

footer {
	clear: both;
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding-bottom: 30px;
		@media screen and (max-width:850px) {
			padding-top: 10px;
			padding-bottom: 50px;
		}
}
footer .cright {
	display: block;
	text-align: center;
	font-size: 12px;
	padding-top: 10px;
		@media screen and (max-width:850px) {
			font-size: 10px;
			letter-spacing: 0;
		}
}
footer .pBtn {
	position: absolute;
	right: 90px;
	bottom: 30px;
	font-size: 14px;
	color: var(--base1);
		@media screen and (max-width:850px) {
	left: 50%;
	margin-left: -6em;
	bottom: 80px;
		}
}

@layer base {

}/********** END of base **********/


@layer layout {

}/********** END of layout **********/


@layer components {

}/********** END of components **********/


@layer utilities {

}/********** END of utilities **********/


@layer animations {

}/********** END of animations **********/



/* PCとスマホの表示ON・OFF */
.pcLayer { display: block;
	@media screen and (max-width:850px) { display: none; }
}
.spLayer { display: none;
	@media screen and (max-width:850px) { display: block; }
}
