@charset "utf-8";
.sp {
	display: none !important;
}

img {
width: 100%;
max-width: 100%;
height: auto;
}

/* Common
====================================*/

html, body {
height: 100%;
}
body {
	padding: 0;
	margin: 0 auto;
	text-align: left;
	font-size: 15px;
	line-height: 1.6;
	font-weight: normal;
	color: #333333;
	font-family: "Noto Sans JP";
}
.content01 {
position: relative;
}
.content02 {
padding: 10vh 0;
position: relative;
}
.commonWidth {
width: 84%;
margin: 0 auto;
}

.commonWidth02 {
max-width: 960px;
width: 92%;
margin: 0 auto;
}
.commonWidth03 {
max-width: 700px;
width: 92%;
margin: 0 auto;
}
.commonWidth04 {
width: 760px;
margin: 0 auto;
}
.bg01 {
	background: #f6f6f6;
}
.bg02 {
	background: #f6f6f6;
}
.bg03 {
	background: #EFEDE6;
}
.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  transition: 1s;
}

@keyframes fadeInUp{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Link
====================================*/

a:link {
	text-decoration: none;
	outline: none;
	color: #62c82a;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
a:visited {
	text-decoration: none;
	outline: none;
	color: #62c82a;
}
a:hover {
	text-decoration: none;
	outline: none;
}
.on a:hover {
	filter: alpha(opacity=60);
	opacity: 0.6;
	-ms-filter: "alpha( opacity=60 )";
	-moz-opacity: 0.6;
	-webkit-opacity: 0.6;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

/* Heading
====================================*/

h2,h3 {
	font-family: 'Zen Kurenaido', sans-serif;
}

/* Header
====================================*/

.header button {
	display: none;
}

.wrapperKey{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.keyImg {
	width: 50vh;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

/* 背景レイヤー */
.keyBg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* 画像共通 */
.keyBg span{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: keySlide 18s infinite;
  transform: scale(1.03); /* 少しだけズームでリッチに */
	  /* ズーム用 */
  transform: scale(1);
  will-change: opacity, transform;
}

/* 画像指定：ここを差し替え */
.keyBg .bg1{ background-image: url("../images/key_bg_01.jpg"); opacity: 1; }
.keyBg .bg2{ background-image: url("../images/key_bg_02.jpg"); animation-delay: 6s; }
.keyBg .bg3{ background-image: url("../images/key_bg_03.jpg"); animation-delay: 12s; }

/* フェードアニメ */
@keyframes keySlide{
  0%   { opacity: 0; transform: scale(1); }
  10%  { opacity: 1; }
  33%  { opacity: 1; transform: scale(1.08); } /* ←じわっとズーム */
  43%  { opacity: 0; transform: scale(1.10); }
  100% { opacity: 0; transform: scale(1.10); }
}

/* 既存の中身を背景より前に */
.wrapperKey > header,
.wrapperKey > .key{
  position: relative;
  z-index: 2;
}

/* いま背景が明るいので、薄い白ベールを足す（任意） */
.wrapperKey::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(2,70,1,0.4);
  z-index: 1;
}



.header h1 {
width: 300px;
padding: 30px 20px;
}

.key {
	margin: 7% auto;
}

.key h2{
  width: 484px;
  color:#fff;
  font-size:40px;
  text-align:center !important;
  margin-bottom:40px;
  line-height:1.4;
  position:relative;
  display:block;
  margin: 0 auto;
	
  letter-spacing: 2px;     /* 少し詰めると自然 */
  transform: rotate(-0.5deg); /* わずかに傾ける */
	font-style: italic;
}

/* ===============================
   h2 の移動アニメーション用
=============================== */
.slide-marker{
  position: relative;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
	  position: relative;
  transition: none;
}
/* 戻る時だけアニメする */
.slide-marker.is-animate{
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
/* ===============================
   タイピング風 文字アニメーション
=============================== */
.slide-marker span{
  display:inline-block;
  opacity:0;
  clip-path: inset(0 100% 0 0);
  animation: typing 0.6s ease forwards;
}

@keyframes typing{
  from{
    opacity:0;
    clip-path: inset(0 100% 0 0);
  }
  to{
    opacity:1;
    clip-path: inset(0 0 0 0);
  }
}

/* ===============================
   カーソル点滅
=============================== */
.slide-marker .cursor{
  display:inline-block;
  margin-left:6px;
  animation:blink 1s infinite;
}

@keyframes blink{
  0%,50%,100%{opacity:1;}
  25%,75%{opacity:0;}
}

/* ===============================
   オレンジ蛍光マーカー
=============================== */
.slide-marker::before{
  content:"";
  position:absolute;
  left:-35px;
  bottom:-2px;
  height:0.6em;
  width:0;

  background:rgba(255,140,0,0.35);
  filter:blur(2px);
  transform:skewX(-8deg);
  border-radius:6px;
  z-index:-2;

  animation:markerLine 0.8s ease-out forwards;
  animation-delay:var(--marker-delay,1s);
}

.slide-marker::after{
  content:"";
  position:absolute;
  left:-4px;
  bottom:-2px;
  height:0.6em;
  width:0;

  background:linear-gradient(
    90deg,
    rgba(255,140,0,0.0) 0%,
    rgba(255,140,0,0.75) 8%,
    rgba(255,140,0,0.9) 50%,
    rgba(255,140,0,0.75) 92%,
    rgba(255,140,0,0.0) 100%
  );

  filter:blur(1px);
  transform:skewX(-12deg);
  border-radius:6px;
  z-index:-1;

  animation:markerLine 0.8s ease-out forwards;
  animation-delay:var(--marker-delay,1s);
}

@keyframes markerLine{
  to{ width:105%; }
}

/* ===============================
   line2 フェードイン用
=============================== */
.line2{
	padding-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
	
}

.line2.is-show{
  opacity: 1;
  transform: translateY(0);
}






h3.line2{
	text-align: center;
	margin-bottom: 40px;
  letter-spacing: 2px;   /* 2行目だけ詰める */
  color: #fff;           /* 2行目だけ色変え */
	font-size: 16px;
	font-weight: normal;
}
.key p {
	width: 150px;
	color: #fff;
	background: #3ea705;
	text-align: center;
	padding: 8px 20px;
	margin: 0 auto;
	border-radius: 4px;
	position: absolute;
	font-weight: bold;
	font-size: 16px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
	
}
.keyList {
	width: 800px;
	margin: 0 auto;
	background: rgba(255,255,255,0.2) url(../images/bg_00.png) repeat;
	background-size: 90px;
	padding:50px 60px 50px 60px;
	border-radius: 4px;
	text-align: center;
	position: relative;
	top:20px;
	        border-radius: 20px;
}
.keyList li {
	display: inline-block;
	margin-top: 10px;
	margin-right:10px;
	font-size: 14px;
}
.keyList li a {
	display: block;
	color: #000;
	background: #fff;
	border-radius: 50px;
	padding: 10px 30px 12px 30px;
}
.keyList li:hover a {
	background: #3e3f3f;
	color: #fff;
}
.scroll {
	width: 70px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 40px;
	margin: auto;
}

/* header02：最初は非表示（上に隠す） */
/* 最初は非表示に固定（onが付いてても隠す） */
header.header02.on{
  position: fixed;
  top: -120px;      /* ヘッダー高さに合わせて調整 */
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: top .25s ease;
	background: #fff;
	box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* 表示させる */
header.header02.on.is-show{
  top: 0;
}
.header02 h1 {
width: 300px;
padding: 25px 20px;
}
.header02 .globalNavi {
padding: 0px;
}


.wrapperKey02 {
	position: relative;
  height: 400px;
  overflow: hidden;
	background: url("../images/key_sub.jpg") no-repeat center center;
	background-size: cover;
}
.keyBgArea {
	height:100vh;
	background: rgba(0,0,0,0.6);

	
}
.keyBg01 {
	background: url("../images/cleaning/img_01.jpg") no-repeat center center;
	background-size: cover;
	
}
.keyBg02 {
	background: url("../images/cleaning/img_02.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg03 {
	background: url("../images/cleaning/img_04.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg04 {
	background: url("../images/cleaning/img_05.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg05 {
	background: url("../images/cleaning/img_06.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg06 {
	background: url("../images/cleaning/img_07.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg07 {
	background: url("../images/cleaning/img_08.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg08 {
	background: url("../images/cleaning/img_09.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg09 {
	background: url("../images/cleaning/img_10.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg10 {
	background: url("../images/cleaning/img_11.jpg") no-repeat center center;
	background-size: cover;
}

.keyBg11 {
	background: url("../images/img_01.jpg") no-repeat center top;
	background-size: cover;
}
.keyBg12 {
	background: url("../images/housekeeping/img_01.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg13 {
	background: url("../images/housekeeping/img_02.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg14 {
	background: url("../images/housekeeping/img_03.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg15 {
	background: url("../images/housekeeping/img_04.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg16 {
	background: url("../images/housekeeping/img_05.jpg") no-repeat center center;
	background-size: cover;
}

.keyBg17 {
	background: url("../images/img_04.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg18 {
	background: url("../images/img_02.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg19 {
	background: url("../images/img_03.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg20 {
	background: url("../images/img_07.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg21 {
	background: url("../images/img_06.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg22 {
	background: url("../images/support/img_07.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg23 {
	background: url("../images/support/img_11.jpg") no-repeat center center;
	background-size: cover;
}
.keyBg24 {
	background: url("../images/corporate/img_06.jpg") no-repeat center center;
	background-size: cover;
}
.wrapperKey02Key {
	width: 84%;
	margin: 3vh auto 0 auto;
}

.wrapperKey02Key h2 {
	   font-size: 40px;
        margin-bottom: 20px;
        letter-spacing: 4px;
	   color: #fff;

}
    .wrapperKey02Key h2 span {
        font-size: 16px;
        letter-spacing: 1px;
        color: #ccc;
	   color: #ef8805;
		display: block;

}
   .wrapperKey02Key p {
	   color: #fff;

}
/* navi
====================================*/

.globalNavi {
	background: #fff;
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 20px;
	border-radius: 4px;
	z-index: 9999;
}
.globalNavi li {
	width: 80px;
	float: left;
	text-align: center;
	padding: 0 0;
	font-size: 12px;
	line-height: 1;
}
.globalNavi li:nth-child(4) {
	letter-spacing: 1px;
}
.globalNavi li a {
	color: #333333;
	font-weight: bold;
	
}
.globalNavi li img {
	width:60px;
	display: block;
	margin: 0 auto;
	padding-bottom: 10px;
}
/* footer
====================================*/

.footer {
	padding: 15vh 0;
}

.footerArea {
	width: 20%;
	float: left;
	margin-right: 5%;
}
.footerArea p,.footerArea02 p {
	font-weight: bold;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ccc;
}
.footerArea a {
	color: #333333;
}
.footerArea li {
	padding-top: 4px;
}
.footerArea02 {
	width: 45%;
	float: left;
}

.footerArea02 li {
	width: 48%;
	float: left;
	margin-left: 4%;
	padding-top: 4px;
}
.footerArea02 li:nth-child(odd) {
	margin-left: 0;
}

.footerArea02 a {
	color: #333333;
}

.address {
	clear: both;
	text-align: center;
	padding: 10px 0;
	background: #3ea705;
	color: #fff;
}

.clickBtn {
	width:120px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}


.clickBtn:hover {
	border-radius: 50%;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	filter: alpha(opacity=80);
	opacity: 0.8;
	-ms-filter: "alpha( opacity=80 )";
	-moz-opacity: 0.8;
	-webkit-opacity: 0.8;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

/* =========================
  Breadcrumb（パンくず）
========================= */
.breadcrumb{
  width: 84%;
	margin: 20px auto 0 auto;
}

.breadcrumb__list{
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;

  border-radius: 12px;
}

.breadcrumb__item{
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #5f6b64;
}

/* 区切り（>） */
.breadcrumb__item + .breadcrumb__item::before{
  content: ">";
  margin-right: 10px;
  color: #9aa8a0;
}

.breadcrumb__link{
  color: #2e7d12;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 8px;
  padding: 2px 6px;
}

.breadcrumb__link:hover{
  background: rgba(71,159,23,.12);
  text-decoration: underline;
}

.breadcrumb__current{
  color: #1b1f1d;
  font-weight: 800;
  line-height: 1.4;
}

/* contents01
====================================*/

.contents01 {
	width: 100%;
	display: table;
}

.contents01Box {
	width: 60%;
	display: table-cell;
	vertical-align: middle;
	padding: 0 8%;
}
.contents01Box h2 {
	font-size:30px;
	margin-bottom: 20px;
	letter-spacing: 4px;
	
}
.contents01Box h2 span {
	display: block;
	font-size:16px;
	letter-spacing: 1px;
	color: #ef8805;
}
.contents01BoxR {
	background: url("../images/img_01.jpg");
	background-size: cover;
	display: table-cell;
	border-bottom-left-radius: 20px;
}
.contents01BoxR_02 {
	background: url("../images/img_04.jpg");
	background-size: cover;
	display: table-cell;
	border-bottom-left-radius: 20px;
}
.contents01BoxR_03 {
	background: url("../images/img_08.jpg") no-repeat center center;
	background-size: cover;
	display: table-cell;
	border-bottom-left-radius: 20px;
}

.btn01 a{
	background: url("../images/aroow.png") no-repeat left 2px;
	background-size:22px;
  position: relative;
  display: inline-block;
  color: #3ea705;
	font-weight: bold;
	margin-top: 40px;
	padding-left: 40px;
}

/* 下線（黒） */
.btn01 a span{
  position: relative;
  display: inline-block;
  padding-bottom: 4px; /* 下線との距離 */
}

.btn01 a span::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;                 /* ←最初は0 */
  height: 2px;
  background: #3ea705;         /* ←黒 */
  transition: width 0.35s ease;
}

/* hoverで左→右へ伸びる */
.btn01 a:hover span::after{
  width: 100%;
}


.btn02 a{
	background: url("../images/aroow.png") no-repeat left 2px;
	background-size:22px;
  position: relative;
  display: inline-block;
  color: #fff;
	font-weight: bold;
	margin-top: 40px;
	padding-left: 40px;
}

/* 下線（黒） */
.btn02 a span{
  position: relative;
  display: inline-block;
  padding-bottom: 4px; /* 下線との距離 */
}

.btn02 a span::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;                 /* ←最初は0 */
  height: 2px;
  background: #fff;         /* ←黒 */
  transition: width 0.35s ease;
}

/* hoverで左→右へ伸びる */
.btn02 a:hover span::after{
  width: 100%;
}

/* contents02
====================================*/

.contents02 li {
	width: 48%;
	float: left;
	margin-left: 4%;
}
.contents02 li:first-child {
	margin-left: 0;
}

.contents02Box {
}
.contents02Box h2 {
	font-size:30px;
	margin-bottom: 20px;
	letter-spacing: 4px;
	
}
.contents02Box h2 span {
	display: block;
	font-size:16px;
	letter-spacing: 1px;
	color: #ef8805;
}
.contents02BoxR {
	margin-top: 40px;
}
.contents02BoxR img {
	border-radius: 20px;
}

/* contents03
====================================*/

.contents03 {
	background: #f6f6f6;
	border-radius: 20px;
	padding: 8vh;
	margin: 15vh auto;
}
.contents03 h3 {
	font-size: 18px;
	background: #333333;
	width: 300px;
	text-align: center;
	color: #fff;
	margin-bottom: 20px;
	border-radius: 4px;
	padding: 10px;
}
.contents03Text {
	margin-bottom: 40px;
	
}
.contents03 ul {
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
 
.contents03 li {
  width: 30%;
  float: left;
  background: #fff;
  margin-left: 5%;
  margin-bottom: 5%;
  border-radius: 20px;
  cursor: pointer;
  position: relative;

  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

/* 矢印 */
.contents03 li::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 30px;
  height: 30px;
  background: url("../images/aroow.png") no-repeat center/contain;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.contents03 li:hover {
  box-shadow: 0px 5px 15px rgba(0,0,0,0.35);
  opacity: 0.85;
}

/* ホバー時に矢印ふわっと出す */
.contents03 li:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ふわっと表示用：forwards を消す */
.js-more-list02 li.is-show{
  animation: fadeInUp 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}
.hoverLink {
	position: absolute;
	right: 40px;
	bottom: 20px;
	font-size:36px;
	color: #3ea705;
transition: transform .25s ease; /* 追加 */
}
.contents03 li:nth-child(3n+1) {
	margin-left: 0;
}
.contents03 li a {
	color: #333333;
	display: block;
}
.contents03BoxR {
}
.contents03BoxR img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.contents03Box {
	padding: 5vh 40px;
	
		border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	position: relative;	
}


.contents03Box h2 {
	font-size: clamp(14px, 1.3vw, 24px);
	margin-bottom: 10px;
}


/* 4件目以降は隠す */
.js-more-list li.is-hidden{
  display: none;
}

/* ふわっと表示用 */
.js-more-list li.is-show{
  animation: fadeInUp 0.5s ease forwards;
}

/* もっと見るボタン（お好みで） */
.btnMore{
  text-align:center;
  margin-top: 30px;
}
.btnMore a{
  display:inline-block;
  background:#3ea705;
  color:#fff;
  padding: 14px 100px;
  border-radius: 50px;
  font-weight: bold;
}

.btnMore a:hover {
	  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
	filter: alpha(opacity=80);
	opacity: 0.8;
	-ms-filter: "alpha( opacity=80 )";
	-moz-opacity: 0.8;
	-webkit-opacity: 0.8;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/* contents04
====================================*/

.contents04 {
	background: url("../images/line_01.jpg") no-repeat center center;
	background-size: cover;
	text-align: center;
	color: #fff;
	padding: 15vh 0;
}

.contents04Box h2 {
	font-size:30px;
	margin-bottom: 20px;
	letter-spacing: 4px;
	color: #fff;
	
}
.contents04Box h2 span {
	display: block; 
	font-size:16px;
	letter-spacing: 1px;
	color: #ef8805;
}
/* contents05
====================================*/

.contents05 {
	background: #f6f6f6;
	border-radius: 20px;
	padding: 8vh;
	margin: 5vh auto 5vh auto;
}
.contents05 h3 {
	font-size: 18px;
	background: #333333;
	width: 200px;
	text-align: center;
	color: #fff;
	margin-bottom: 20px;
	border-radius: 4px;
	padding: 10px;
}
.contents05Text {
	margin-bottom: 40px;
	
}
.contents05 ul {
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
 
.contents05 li {
  width: 30%;
  float: left;
  background: #fff;
  margin-left: 5%;
  margin-bottom: 5%;
  border-radius: 20px;
  cursor: pointer;
  position: relative;

  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

/* 矢印 */
.contents05 li::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 30px;
  height: 30px;
  background: url("../images/aroow.png") no-repeat center/contain;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.contents05 li:hover {
  box-shadow: 0px 5px 15px rgba(0,0,0,0.35);
  opacity: 0.85;
}

/* ホバー時に矢印ふわっと出す */
.contents05 li:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.contents05 li:nth-child(3n+1) {
	margin-left: 0;
}
.contents05 li a {
	color: #333333;
	display: block;
}
.contents05BoxR {
}
.contents05BoxR img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.contents05Box {
	padding: 5vh 40px;
		border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;

}
.contents05Box h2 {
	font-size: clamp(14px, 1.3vw, 24px);
	margin-bottom: 10px;
}


/* 4件目以降は隠す */
.js-more-list02 li.is-hidden{
  display: none;
}

/* ふわっと表示用 */
.js-more-list02 li.is-show{
  animation: fadeInUp 0.5s ease forwards;
}


/* contents06
====================================*/

.contents06 {
	background: url("../images/line_02.jpg") no-repeat center center;
	background-size: cover;
	text-align: center;
	color: #fff;
	padding: 15vh 0;
}

.contents06Box h2 {
	font-size:30px;
	margin-bottom: 20px;
	letter-spacing: 4px;
	color: #fff;
	
}
.contents06Box h2 span {
	display: block; 
	
	font-size:16px;
	letter-spacing: 1px;
	color: #ef8805;
}
/* contents07
====================================*/

.contents07 {
	background: #f6f6f6;
	border-radius: 20px;
	padding: 8vh;
	margin: 5vh auto 5vh auto;
}
.contents07 h3 {
	font-size: 18px;
	background: #333333;
	width: 200px;
	text-align: center;
	color: #fff;
	margin-bottom: 20px;
	border-radius: 4px;
	padding: 10px;
}
.contents07Text {
	margin-bottom: 40px;
	
}
.contents07 ul {
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
 

.contents07 li {
  width: 30%;
  float: left;
  background: #fff;
  margin-left: 5%;
  margin-bottom: 5%;
  border-radius: 20px;
  cursor: pointer;
  position: relative;

  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

/* 矢印 */
.contents07 li::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 30px;
  height: 30px;
  background: url("../images/aroow.png") no-repeat center/contain;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.contents07 li:hover {
  box-shadow: 0px 5px 15px rgba(0,0,0,0.35);
  opacity: 0.85;
}

/* ホバー時に矢印ふわっと出す */
.contents07 li:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.contents07 li:nth-child(3n+1) {
	margin-left: 0;
}
.contents07 li a {
	color: #333333;
	display: block;
}
.contents07BoxR {
}
.contents07BoxR img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.contents07Box {
	background: #fff;
	
	padding: 5vh 40px;
		border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	
}
.contents07Box h2 {
	font-size: clamp(14px, 1.3vw, 24px);
	margin-bottom: 10px;
}


/* 4件目以降は隠す */
.js-more-list03 li.is-hidden{
  display: none;
}

/* ふわっと表示用 */
.js-more-list03 li.is-show{
  animation: fadeInUp 0.5s ease forwards;
}


/* contents08
====================================*/

.contents08 {
	background: url("../images/line_03.jpg") no-repeat center center;
	background-size: cover;
	text-align: center;
	color: #fff;
	padding: 15vh 0;
}

.contents08Box h2 {
	font-size:30px;
	margin-bottom: 20px;
	letter-spacing: 4px;
	color: #fff;
	
}
.contents08Box h2 span {
	display: block; 
	
	font-size:16px;
	letter-spacing: 1px;
	color: #ef8805;
}
/* contents09
====================================*/

.contents09 {
	background: #f6f6f6;
	border-radius: 20px;
	padding: 8vh;
	margin: 5vh auto 5vh auto;
}
.contents09 h3 {
	font-size: 18px;
	background: #333333;
	width: 300px;
	text-align: center;
	color: #fff;
	margin-bottom: 20px;
	border-radius: 4px;
	padding: 10px;
}
.contents09Text {
	margin-bottom: 40px;
	
}
.contents09 ul {
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
 
.contents09 li {
  width: 30%;
  float: left;
  background: #fff;
  margin-left: 5%;
  margin-bottom: 5%;
  border-radius: 20px;
  cursor: pointer;
  position: relative;

  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

/* 矢印 */
.contents09 li::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 30px;
  height: 30px;
  background: url("../images/aroow.png") no-repeat center/contain;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.contents09 li:hover {
  box-shadow: 0px 5px 15px rgba(0,0,0,0.35);
  opacity: 0.85;
}

/* ホバー時に矢印ふわっと出す */
.contents09 li:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.contents09 li:nth-child(3n+1) {
	margin-left: 0;
}
.contents09 li a {
	color: #333333;
	display: block;
}
.contents09BoxR {
}
.contents09BoxR img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.contents09Box {
	background: #fff;
	
	padding: 5vh 40px;
		border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	
}
.contents09Box h2 {
	font-size: clamp(14px, 1.3vw, 24px);
	margin-bottom:10px;
}


/* 4件目以降は隠す */
.js-more-list04 li.is-hidden{
  display: none;
}

/* ふわっと表示用 */
.js-more-list04 li.is-show{
  animation: fadeInUp 0.5s ease forwards;
}

/* contents10
====================================*/

.contents10 {
	background: #fff;
	border-radius: 20px;
	padding: 8vh;
	margin: 5vh auto 5vh auto;
}
.contents10 h3 {
	font-size: 18px;
	background: #333333;
	width: 300px;
	text-align: center;
	color: #fff;
	margin-bottom: 20px;
	border-radius: 4px;
	padding: 10px;
}
.contents10Text {
	margin-bottom: 40px;
}
.contents10 ul {
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
 

.contents10 li {
  width: 30%;
  float: left;
  background: #fff;
  margin-left: 5%;
  margin-bottom: 5%;
  border-radius: 20px;
  cursor: pointer;
  position: relative;

  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

/* 矢印 */
.contents10 li::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 30px;
  height: 30px;
  background: url("../images/aroow.png") no-repeat center/contain;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.contents10 li:hover {
  box-shadow: 0px 5px 15px rgba(0,0,0,0.35);
  opacity: 0.85;
}

/* ホバー時に矢印ふわっと出す */
.contents10 li:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.contents10 li:nth-child(3n+1) {
	margin-left: 0;
}
.contents10 li a {
	color: #333333;
	display: block;
}
.contents10BoxR {
}
.contents10BoxR img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.contents10Box {
	background: #f6f6f6;
	
	padding: 5vh 40px;
		border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	
}
.contents10Box h2 {
	font-size: clamp(14px, 1.3vw, 24px);
	margin-bottom: 10px;
}


/* 4件目以降は隠す */
.js-more-list04 li.is-hidden{
  display: none;
}

/* ふわっと表示用 */
.js-more-list04 li.is-show{
  animation: fadeInUp 0.5s ease forwards;
}


/* contents11
====================================*/

.bg02 {
	background: url("../images/line_04.jpg") no-repeat center center;
	background-size: cover;
	padding: 15vh 0;
}
.contents11 {
	width: 100%;
	display: table;
	border-bottom: 1px solid #fff;
	padding-bottom:80px; 
}
.contents11L {
	width: 60%;
	display: table-cell;
	padding-right: 80px;
}

.contents11L h2 {
	font-size: 1.8vw;
        margin-bottom: 20px;
        letter-spacing: 4px;
	color: #fff;
}
.contents11L p {
	color: #fff;
	padding-bottom: 20px;
}
.contents11L table th,.contents11L table td {
	padding-top: 10px;
}
.contents11L table th span {
	background: rgba(255,255,255,0.8);
	padding: 4px 20px 6px 20px;
	border-radius: 4px;
	font-weight: normal;
	font-weight:bold;
	font-size: 12px;
}

.contents11L table td {
	padding-left: 20px;
	color: #fff;
}

.contents11R {
	display: table-cell;
	background: #fff;
	text-align: center;
	border-radius: 20px;
	padding: 0 40px;
	vertical-align: middle;
}

.contents11R h3 {
	color: #3ea705;
	margin-bottom: 20px;
	font-size: 18px;
	letter-spacing: 4px;
}
.contents11RBtn {
	margin-bottom: 20px;
}
.contents11RBtn a {
	border-radius: 50px;
	background: #3ea705;
	color: #fff;
	display: block;
	padding: 14px;
	font-weight: bold;
	border: 1px solid #3ea705;
	box-sizing:border-box;
}

.contents11RBtn02 {
	margin-bottom: 20px;
}
.contents11RBtn02 a {
	border-radius: 50px;
	background: #fff;
	color: #3ea705;
	display: block;
	padding: 14px;
	font-weight: bold;
	border: 1px solid #3ea705;
	box-sizing:border-box;
}

.contents11RBtn03 {
	width: 686px;
	margin: 0 auto;
	margin-top: 80px;
	background: #fff600;
	border-radius: 20px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.contents11RBtn03 a {
	display: table;
	color: #3ea705;
	font-weight: bold;
	padding: 40px;
	border-radius: 20px;
	  position: relative;
  overflow: hidden; /* 光をはみ出させない */
}
.contents11RBtn03 a::before{
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 50%;
  height: 160%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 45%,
    rgba(255,255,255,0.75) 50%,
    rgba(255,255,255,0.35) 55%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 4s linear infinite;
}

/* 光が流れるアニメーション */
@keyframes shineMove{
  0%   { left: -70%; }   /* スタート */
  25%  { left: 130%; }   /* 1秒で流れ切る (4秒の25% = 1秒) */
  100% { left: 130%; }   /* 残り3秒は止める */
}
.contents11RBtn03 a img {
	width: 80px;
	display: table-cell;
	vertical-align: middle;
}
.contents11RBtn03 a p {
	display: table-cell;
	vertical-align: middle;
	padding-left: 20px;
}
.contents11RBtn03 a span {
	font-size: 24px;
}

/* contents12
====================================*/

.contents12 h2,.contents1202 h2 {
	font-size:30px;
	margin-bottom: 10vh;
	letter-spacing: 4px;
	text-align-last: center;
   position: relative;
   padding-bottom:20px; /*見出し下の余白調整 */
	
}

.contents12 h2:before ,.contents1202 h2:before {
content: '';
   position: absolute;
   border-bottom: 10px dotted #cccccc; /*点の高さ・種類・色 */
   width: 50px;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   -webkit-transform: translateX(-50%);
}
.contents12 li {
	width: 30%;
	float: left;
	margin-left: 5%;
	background: #fff;
	transition: all 0.3s ease 0s;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.contents12 li:nth-child(3n+1) {
	margin-left: 0;
}

.contents12Img {
	margin-bottom: 20px;
}
.contents12Img img {
	border-radius: 4px;
}

.contents12Info h3 {
 font-size: clamp(14px, 1.3vw, 24px);
	margin-bottom: 10px;
  border-bottom: solid 3px #ccc;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.contents12Info h3 span {
	color: #ef8805;
	padding-right: 10px;
}

.contents12Info h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ef8805;
  bottom: -3px;
  width: 20%;
}

.contents12Info p {
	color: #626262;
}


.contents1202 ul {
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
 .contents1202 li {
	position: relative; /* ← これ必須 */
	width: 30%;
	float: left;
	margin-left: 5%;
	transition: all 0.3s ease 0s;
	overflow: hidden; /* はみ出し防止 */
	 border-radius: 4px;
	 background: #f6f6f6;
}

.contents1202 li:nth-child(3n+1) {
	margin-left: 0;
}

/* ▼ 左上の斜めワンポイント */
.contents1202 li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 50px solid #8bc34a;   /* ← 色変更OK */
	border-right: 50px solid transparent;
}
.contents1202Info {
	padding: 60px 40px;
}
.contents1202Info h3 {
 font-size: clamp(14px, 1.3vw, 24px);
	  border-bottom: solid 3px #ccc;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.contents1202Info h3 span {
	color: #3ea705;
	padding-right: 10px;
}
.contents1202Info h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #3ea705;
  bottom: -3px;
  width: 20%;
}
.contents1202Info p {
	color: #626262;
}
/* contents13
====================================*/

.content02 .contents13{
  padding: 28px 0;
}

.content02 .contents13 h2{
font-size:30px;
	margin-bottom: 10vh;
	letter-spacing: 4px;
	text-align-last: center;
}

.contents13 ul {
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
.contents13 li {
	width: 31.3%;
	float: left;
	margin-left: 3%;
	background: #f6f6f6;
	border-radius: 4px;
	position: relative;
	border-bottom: 5px solid #333333;
}
.contents13 li:first-child {
	margin-left: 0;
}

.contents13Area {
	padding: 10%;
}
.contents13Area h3 {
	 font-size: clamp(14px, 1.2vw, 24px);
	margin-bottom: 10px;
	margin-bottom: 20px;
}

.contents13Area h3 span {
	background: #333333;
	color: #fff;
	padding: 5px 20px 8px 20px;
	border-radius: 4px;
	margin-right: 20px;
	font-size: 16px;
	position: absolute;
	top: -10px;
	left: -10px;
	  transform: rotate(-8deg);
  transform-origin: left bottom;
}

/* contents14
====================================*/

.contents14H2{
font-size:30px;
	letter-spacing: 4px;
	text-align-last: center;
	
        margin-bottom: 10vh;
  position: relative;
   padding-bottom:20px; /*見出し下の余白調整 */
	
}

.contents14H2:before {
   content: '';
   position: absolute;
   border-bottom: 10px dotted #cccccc; /*点の高さ・種類・色 */
   width: 50px;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   -webkit-transform: translateX(-50%);
}


.contents14 {
	width: 860px;
        background: #fff;
        padding: 40px;
        margin: 5vh auto 5vh auto;
	position: relative;
	border-radius:4px;
	overflow: hidden;
}
/* ▼ 左上の斜めワンポイント */
.contents14::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 50px solid #ef8805;   /* ← 色変更OK */
	border-right: 50px solid transparent;
}


.contents14 li {
	width: 25%;
	float: left;
	padding: 4px 0;
}
.contents14 li::before {
	content: "・";
}

/* contents15
====================================*/

.contents15 table {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}
.contents15 table th {
	background: #EFEDE6;
	padding: 20px;
	border: 1px solid #ccc;
}
.contents15 table td {
	background: #fff;
	padding: 20px;
	border: 1px solid #ccc;
}
.contents1502 table {
	width: 100%;
	text-align: left;
	margin-bottom: 20px;
}
.contents1502 table th {
	background: #EFEDE6;
	padding: 20px;
	border: 1px solid #ccc;
}
.contents1502 table td {
	background: #fff;
	padding: 20px;
	border: 1px solid #ccc;
}
/* contents16
====================================*/

.contents16 h2{
font-size:30px;
	letter-spacing: 4px;
	text-align-last: center;
	
        margin-bottom: 10vh;
  position: relative;
   padding-bottom:20px; /*見出し下の余白調整 */
}

.contents16AreaImg {
	height: 350px;
	overflow: hidden;
	margin-bottom: 40px;
	border-radius: 4px;
}

.contents16AreaImg img {
	border-radius: 4px;
	height: 350px;
  object-fit: cover;
}


.contents16 li {
	margin-bottom: 40px;
}
.contents16 li:last-child {
	margin-bottom: 0;
}
.contents16 h3 {
        margin-bottom: 10px;
        border-bottom: solid 3px #ccc;
        position: relative;
        margin-bottom: 20px;
	font-size: 20px;
}
.contents16 h3 span {
	color: #ef8805;
	font-size: 30px;
	padding-right: 10px;
}
.contents16 h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ef8805;
  bottom: -3px;
  width: 20%;
}
.contents16 p {
	color: #626262;
}

/* schedule
====================================*/

.scheduleH2{
font-size:30px;
	letter-spacing: 4px;
	text-align-last: center;
        margin-bottom: 10vh;
   position: relative;
   padding-bottom:20px; /*見出し下の余白調整 */
	
}

.scheduleH2:before {
 content: '';
   position: absolute;
   border-bottom: 10px dotted #cccccc; /*点の高さ・種類・色 */
   width: 50px;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   -webkit-transform: translateX(-50%);
}

.schedule {
    position: relative;
    font-size: 14px;
}


.scheduleImg {
	width: 35%;
	background: url("../images/img_01.jpg") no-repeat right top;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.schedule::before {
    position: absolute;
    top: 0px;
    left: 10em;
    width: 6px;
    height: 100%;
    background-color: #ccc;
    content: "";
}

.schedule ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.schedule li {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.schedule li + li {
    margin-top: 2em;
}

.schedule_time {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 9em;
    height: 3em;
	padding-bottom: 2px;
    border-radius: 0px;
    background-color: #3ea705;
    color: #fff;
    text-align: center;
}
.schedule_time::before {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateX(50%) translateY(-50%) rotate(45deg);
    width: 0.7em;
    height: 0.7em;
    z-index: -1;
    background-color: #3ea705;
    content: "";
}
.schedule_time::after {
    position: absolute;
    top: 50%;
    left: 132px;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: #3ea705;
    content: "";
}

.schedule_content_title {
    font-weight: bold;
}

.schedule_content {
    margin: 0px 0px 0px 7em;
    width: calc(100% - 10em);
}

/* contact
====================================*/
.contactBox {
background: #fff;
padding: 40px;
border-radius: 4px;
}

.contactInfoBox{
  background:#fff;
  margin-bottom:20px;
}

.contactTel{
  font-size:22px;
  margin-bottom:6px;
}

.step-menu {
	margin-bottom: 40px;
}
.step-menu li {
	width: 31.7%;
	background: #cccccc;
	margin-left: 2%;
	float: left;
	font-size: 18px;
	border-radius: 4px;
	font-weight: bold;
}
.step-menu li:first-child {
	margin-left: 0;
}

.step-active {
	background: #333333 !important;
	color: #fff;
}

.step-menu li span {
	padding:10px 20px;
	display: block;
}
.contactTable {
  width: 100%;
  border-top: 1px solid #ccc;
  margin-top: 40px;
}
.contactTable th {
  width: 180px;
  vertical-align:middle;
  padding: 20px;
  border-bottom: 1px solid #ccc;
}
.contactTable th span {
	color: #ff0000;
}
.contactTable td {
  border-bottom: 1px solid #ccc;
  padding: 20px;
}
select {
	 padding: 12px 40px 12px 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  cursor: pointer;
	font-family: "Noto Sans JP";
}
.date-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
}

.date-wrap input[type="date"] {
  width: 200px;
  padding: 12px 40px 12px 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
	font-family: "Noto Sans JP";
}

/* フォーカス時 */
.date-wrap input[type="date"]:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74,144,226,0.15);
  outline: none;
}

/* デフォルトのカレンダーアイコンを透明に（Chrome系） */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

label {
	display: block;
}
input[type=radio] {
	position: relative;
	top: -1px;
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #333333; /* ← ここが効くようになる */
  background: #fff;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
}

/* 選択時の中の丸 */
input[type="radio"]::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #333333;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s;
}

input[type="radio"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
input[type=text], input[type=Email], input[type=number] {
  width: 400px !important;
 font-family: "Noto Sans JP";
  background: #fff;
   padding: 12px 40px 12px 14px;
  box-shadow: none;
  border: none;
	cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
	border: 1px solid #ccc;
}
textarea {
  width: 400px !important;
 font-family: "Noto Sans JP";
  background: #fff;
   padding: 12px 40px 12px 14px;
  box-shadow: none;
  border: none;
	cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
	border: 1px solid #ccc;
}
input[type=reset], input[type=submit], input[type=button] {
  font-family: "Noto Sans JP";
  padding: 10px 30px 12px 30px;
  font-size: 20px;
  color: #FFF;
  border: none;
  cursor: pointer;
  margin: 0 10px;
  border-radius: 4px;

}
input[type=reset], input[type=button] {
  background: #999;
}
input[type=submit] {
  background: #f57c7c;
}
input[type=reset]:hover, input[type=submit]:hover, input[type=button]:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
  -ms-filter: "alpha( opacity=60 )";
  -moz-opacity: 0.6;
  -webkit-opacity: 0.6;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* ===== Step Form UI ===== */
.step-menu li{
  position: relative;
  overflow: hidden;
}
.step-menu li span{
  text-align: center;
}
.step-menu li.step-active{
  background:#333333 !important;
  color:#fff;
}
.step-menu li.step-done{
  background:#8cc152;
  color:#fff;
}
.step-menu li.step-done::after{
  content:"✓";
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  font-weight:bold;
}

/* 表示制御 */
.step-row{ display:none; }
.step-row.is-show{ display:table-row; }

/* radio labelちょいおしゃれ */
.radioLabel{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 0;
}

/* date icon */
.date-wrap{
  position:relative;
}
.date-wrap .date-icon{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  pointer-events:none;
  opacity:0.7;
}

/* confirm */
.confirmBox{
  background:#f7f7f7;
  border:1px solid #e5e5e5;
  border-radius:6px;
  padding:14px;
  line-height:1.8;
}
.confirmBox dl{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:10px 14px;
  margin:0;
}
.confirmBox dt{
  font-weight:bold;
  color:#333;
}
.confirmBox dd{
  margin:0;
  color:#111;
  word-break:break-word;
}

/* buttons */
.formNav{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:20px;
}
.btn{
  font-family:"Noto Sans JP";
  padding:12px 40px 14px 40px;
  font-size:18px;
  border:none;
  border-radius:6px;
  cursor:pointer;
}
.btn-main{ background:#3ea705; color:#fff; }
.btn-sub{ background:#999; color:#fff; }
.btn:disabled{ opacity:.4; cursor:not-allowed; }

/* input 幅をスマホで崩れないように */
input[type=text], input[type=email], textarea, .date-wrap{
  width:100% !important;
  max-width:400px;
}
@media (max-width: 600px){
  .contactBox{ padding:20px; }
  .contactTable th{ width:120px; padding:14px; }
  .contactTable td{ padding:14px; }
}

/* voiceList
====================================*/
.voiceList{
  list-style:none;
  padding:0;
  margin:0;
}

.voiceItem{
  background:#fff;
  border-radius:14px;
  padding:40px;
  margin:0 0 16px 0;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

.voiceItem h3{
  font-size:24px;
  line-height:1.4;
  margin:0 0 20px 0;
	padding-bottom: 20px;
}

.voiceStar{
  letter-spacing:2px;
  margin:0 0 10px 0;
  font-weight:bold;
}

.voiceItem p{
  margin:0;
  line-height:1.9;
}

/* =========================
   FAQ（丸ごとコピペOK）
   ※既存の h3:after 等の装飾と競合しても崩れないように調整済み
========================= */

.faqList{
  list-style:none;
  padding:0;
  margin:0;
	
}

.faqItem{
  background:#EFEDE6;
  border-radius:4px;
  margin-bottom:4px !important;
  overflow:hidden;
}

/* 質問（Q） */
.faqQ{
  margin:0 !important;
  padding:40px !important; /* 右側アイコン分を広めに */
  cursor:pointer;
  position:relative;
  font-size:16px;
  line-height:1.6;
  
  /* 既存CSS（h3系）の下線・装飾を無効化 */
  border:none !important;
  background:none !important;
  box-shadow:none !important;
}

/* 既存の h3::before の装飾が当たる場合があるので潰す */
.faqQ::before{
  content:none !important;
  background:none !important;
  width:auto !important;
  height:auto !important;
}

/* 右側の + / −（既存の h3:after を完全に上書き） */
.faqQ::after{
  content:"+" !important;
  position:absolute !important;
  right:16px !important;
  top:50% !important;
  transform:translateY(-50%) !important;

  width:28px !important;
  height:28px !important;
  line-height:28px !important;
  text-align:center !important;

  font-size:18px !important;
  font-weight:bold !important;
  color:#333 !important;

  background:#f2f2f2 !important;
  border-radius:50% !important;

  /* オレンジ線などの疑似要素装飾を強制的に無効化 */
  border:none !important;
  box-shadow:none !important;
  background-image:none !important;
}

/* 開いたとき */
.faqItem.is-open .faqQ::after{
  content:"−" !important;
}

/* 回答（A） */
.faqA{
  display:none;
  padding:0 40px 40px 40px;
}

.faqA p{
  margin:0;
  line-height:1.9;
}
.sitemapBlock {
	margin-bottom: 20px;
}
.sitemapBlock h3 {
	font-size: 18px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 20px 0;
	margin-bottom: 20px;
}
.sitemapBlock ul {
	padding-left: 10px;
}
.sitemapBlock li::before {
	content: "・";
}