@charset "UTF-8";
/* header */
header {
	width:100%;
	padding:20px;
	display:flex;
	flex-wrap:wrap;
	align-items: center;
	justify-content: space-between;
}

.h_logo {
	width:30%;
	max-width:230px;
	padding:10px 15px;
}

.h_logo img {
	width:100%;
}

.pc_menu {
	width:70%;
	max-width:840px;
	display:flex;
	flex-wrap:wrap;
	align-items: center;
	justify-content: space-between;
}


.pc_menu li {
	text-align:center;
}


.pc_menu li a {
	font-size:1.3rem;
	color:#000;
	line-height:1.6;
}


.pc_menu li a span {
	display:block;
	font-size:1.8rem;
	font-weight:600;
}


.pc_menu li.btn_line {
width:220px;
font-family: "Zen Maru Gothic", sans-serif;
font-weight:600;
font-size:1.8rem;
line-height: 1.2;
background-color: #fff;
border: 2px solid #06c755;
}

.pc_menu li.btn_line a {
position: relative;
display:flex;
flex-wrap:wrap;
align-items: center;
justify-content: center;
height:70px;
text-align:left;
color:#000;
}

.pc_menu li.btn_line a::before {
	content:"";
	display:inline-block;
	width:35px;
	height:35px;
	background:url("../images/ico_line.png") no-repeat center center;
	background-size:contain;
	margin:0 18px 0 0;
}

.hamburger, .sp-nav {
	display:none;
}


@media all and (max-width:1023px) {
header {
	width:100%;
	padding:10px;
	display:flex;
	flex-wrap:wrap;
	align-items: center;
	justify-content: space-between;
}
	
.h_logo {
	width:19%;
	max-width:230px;
	padding:10px 5px;
}

.pc_menu {
	width:78%;
	max-width:840px;
	display:flex;
	flex-wrap:wrap;
	align-items: center;
	justify-content: space-between;
}
	
.pc_menu li a {
	font-size:1.2rem;
	color:#000;
	line-height:1.5;
}


.pc_menu li a span {
	display:block;
	font-size:1.6rem;
	font-weight:600;
}
	
.pc_menu li.btn_line {
	width:180px;
}
}

@media all and (max-width:767px) {
.h_logo {
	width:35%;
	max-width:230px;
	padding:0;
}
	
.pc_menu {
	display:none;
}

/* ハンバーガーボタン */
.hamburger {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: orange;
  border: none;
  cursor: pointer;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* ボタン内の3本線と×の切り替え */
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: white;
  transition: all 0.3s;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* スマホメニュー本体 */
.sp-nav {
  display:block;
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態は画面外（右） */
  width: 100%;
  height: 100vh;
  background-color: beige;
  transition: right 0.4s ease;
  z-index: 90;
  padding-top: 80px;
  overflow-y: auto;
}

.sp-nav.is-active {
  right: 0;
}

/* メニューリスト */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size:1.6rem;
}

.menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #ddd;
  position: relative;
}

/* 矢印共通設定 */
.menu-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  transition: transform 0.3s;
}

/* 階層なし：左向き矢印 */
.arrow-left::after {
  transform: rotate(45deg);
}

/* 子メニューあり：下向き矢印 */
.arrow-down::after {
  transform: rotate(135deg);
}

/* 子メニュー展開時：上向き矢印 */
.has-child .menu-link.is-open::after {
  transform: rotate(-45deg);
}

/* 子メニュー（アコーディオン） */
.sub-menu {
  list-style: none;
  padding: 0;
  background-color: #fff; /* 少し濃い目のベージュ */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.sub-menu li a {
  display: block;
  padding: 15px 40px;
  text-decoration: none;
  color: #555;
  border-bottom: 1px solid #eee;
}
}


/* footer */
/* sub pages */
footer {
	width:100%;
	position:relative;
	font-size:1.6rem;
	background:#f6f1e2;
}

.footer_inner {
	width:96%;
	max-width:1400px;
	margin:0 auto;
	padding:70px 0 0;
}

@media all and (max-width:768px) {
.footer_inner {
	width:96%;
	max-width:1400px;
	margin:0 auto;
	padding:50px 0 0;
}	
}

/* top page */
#index footer {
	width:100%;
	position:relative;
	font-size:1.6rem;
}

#index footer::after {
	content:"";
	display:block;
	width:100%;
	height:66%;
	background:#f6f1e2;
	position:absolute;
	left:0;
	bottom:0;
	z-index:-1;
}

@media all and (max-width:768px) {
#index footer::after {
	content:"";
	display:block;
	width:100%;
	height:75%;
	background:#f6f1e2;
	position:absolute;
	left:0;
	bottom:0;
	z-index:-1;
}
}

#index footer .footer_inner {
	width:96%;
	max-width:1400px;
	margin:0 auto;
}

.block_gmap {
	width:100%;
	max-width:1400px;
	margin:0 auto 40px;
	padding-top:45%;
	background:#CCC;
	position:relative;
}

.block_gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media all and (max-width:560px) {
.block_gmap {
	width:100%;
	max-width:1400px;
	margin:0 auto 40px;
	padding-top:100%;
	background:#CCC;
}
}

.f_content {
	width:100%;
	max-width:1400px;
	margin:0 auto 60px;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
}

.c_info {
	width:50%;
	margin:0;
}

.f_menu {
	width:25%;
	margin:0;
}

@media all and (max-width:768px) {
.c_info {
	width:100%;
	margin:0 0 30px;
}

.f_menu {
	width:49%;
	margin:0 0 30px;
}	
}

@media all and (max-width:560px) {
.f_menu {
	display:none
}
}

.cName {
	font-size:1.8rem;
	font-weight:500;
}

.cTel span {
	font-size:2.4rem;
	color:#80c269;
	font-weight:600;
}

.block_copy {
	border-top:1px solid #AAA;
	font-size:1.2rem;
	padding:2em 0;
	text-align:center;
}

.f_contact {
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	align-items: center;
	width:275px;
	text-align:center;
	font-weight:400;
	background:#fff;
	font-size:1.8rem;
	padding:15px;
	color: #000;
	transition: background-color 0.3s linear, transform 0.2s linear;
	margin:0;
	border: 2px solid #06c755;
}

.f_contact::before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url(../images/ico_line.png) no-repeat center center #FFF;
	background-size: contain;
	margin: 0 15px 0 0;
}

.f_contact:hover {
	opacity: .5;
	transform: translateY(-2px);
}

.f_menu > ul > li {
	font-weight:600;
	padding:3px 0 3px 25px;
	position:relative;
}


.f_menu a:hover {
	color:#80c269;
	opacity:1 !important;
}


.f_menu > ul > li::before {
	content:"";
	display:block;
	width:16px;
	height:16px;
	background:#80c269;
	border-radius: 50%;
	position:absolute;
	top:9px;
	left:0;
}

.f_menu > ul > li > a {
	color:#000;
}

.f_menu > ul > li > ul > li {
	font-weight:400;
	padding:3px 0 3px 0;
}

.f_menu > ul > li > ul > li > a {
	color:#000;
}

@media all and (max-width:560px) {
.cTel span {
	font-size:2.2rem;
	color:#80c269;
	font-weight:600;
}
	
.f_contact {
}
}