@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;
	padding: 0 10px 0 10px;
}

/*-- 共通カラー --*/
:root {
  --base1: #F08300;
  --base2: #8EC54A;
  --pink1:#F096A7;
  --blue1:#5EB7E8;
  --blue2:#7ad1f1;
  --orage:#FEC400;
}
    

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

header ul.subBtn {
	position: absolute;
	right: 0px;
	top: 15px;
	display: flex;
	@media screen and (max-width:850px) {
	display: none;
	}
}
header ul.subBtn li {
	border-radius: 10px;
}
header ul.subBtn li a {
	position: relative;
	display: block;
	color: #FFF;
	padding: 10px 20px 10px 20px;
	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(--pink1);
	margin-right: 15px;
	padding-left: 20px;
	position: relative;
}
header ul.subBtn li:nth-child(1)::after {
	content: "";
	position: absolute;
	background-image: url(../../images/icon_tel1.svg);
	background-size: 100%;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 10px;
	margin-top: -10px;
}
header ul.subBtn li:nth-child(2) {
	background-color: var(--blue1);
}
header ul.subBtn li:hover a::after {
	left: 15px;
}

header .headerBlock {
/*	display: flex;
	justify-content: space-between;*/
	padding-top: 0px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--base1);
	@media screen and (max-width:850px) {
	padding-left: 10px;
	}
}
header .headerBlock .logo {
	max-width: 350px;
	@media screen and (max-width:850px) {
	width: 40%;
	}
} 
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: 24px;
	font-size: clamp(1.5rem, -2.75rem + 8vw, 3.25rem);
	letter-spacing: 0em;
	margin-top: 10px;
		@media screen and (max-width:850px) {
			margin-top: 10px;
			letter-spacing: 0em;
		}
}
header .headerBlock .logo h1 img {
	width: 100%;
}





header nav {
    width: auto;
    margin-bottom: 15px;
    margin-top: 0;
    overflow: hidden;
}
header nav ul {
	display: flex;
/*	justify-content: space-between;*/
	float: right;
}
header nav ul li {
	font-size: 18px;
	padding: 0 0px 0 0px;
	margin: 0 0px 0 0px;
	margin-left: 20px;
	line-height: 18px;
	width: auto;
	float: left;
	display: inline-block;
}
header nav ul li a {
	display: block;
	width: 100%;
	text-align: left;
	padding: 0px 0 0px 22px;
	position: relative;
	font-weight: normal;
	transition: .3s;
}
header nav ul li a::after {
  content:"■";
  display: block;
  width: 18px;
  height: 18px;
  color: var(--base1);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .3s;
}
header nav ul li a:hover {
	color: var(--green1);
}




/* # =================================================================
   # ハンバーガーメニュー
   # ================================================================= */
/* overlay-styles.css */
@media screen and (max-width:850px) {
.hamburger-overlay {
  position: fixed;
  top: 5px;
  right: 5px;
  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 auto 0 auto;
	width: 90%;
	border: none;
	border-bottom: 1px solid #FFF;
}
header nav ul li a {
	display: block;
	text-align: center;
	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;
	background: var(--base1);
	color: #FFF;
	text-align: center;
	margin: 30px auto;
	padding: 15px;
	font-size: 18px;
	line-height: 1.6;
	@media screen and (max-width:850px) {
	max-width: 90%;
	}
}
.wideBtn a {
	width: 50%;
	max-width: 200px;
	margin: 10px auto;
	display: block;
	padding: 15px 15px 15px 35px;
	border-radius: 10px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: normal;
	font-size: 16px;
	text-align: center;
	transition: all 0.5s;
	background: #FFF;
	position: relative;
	color: var(--base1);
}
.wideBtn a:hover {
	opacity: 0.7;
}
.wideBtn a::after {
	content: "";
	position: absolute;
	background-image: url(../../images/icon_tel2.svg);
	background-size: 100%;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 35px;
	margin-top: -10px;
}
.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; }
}
