@charset "utf-8";

/*
	* 顧客オリジナルスタイルシート
	* サイト全体に関するスタイル
	* ver1
	* Copyright (C) ●●など
	* 更新履歴
		└ 
*/

/* *{
	border: solid 1px #ccc;
} */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	初期設定（不要なものは削除）
//////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ******************************************************************************************
	root設定（適宜修正）（フォントはベースフォント外を削除してください。）
****************************************************************************************** */
:root{
	--black: #0b0b0b;
	--mainColor: #58a942;
	--accentColor: #D4F2B6;
	--white: #fff;
	--lightGray: #f8f8f8;
	--gray: #e8e8e8;
	--darkGray: #b1b1b1;
	--pink: #d17389;
	--purple: #a68dae;
	--green: #5eb0ad;
	--headerSpace: 20px;/* ヘッダー統一余白 */
	--hamburgerSpace: 60px;/* ハンバーガーメニュー幅相殺余白 */
	--borderRadius3: 3px;/* 角丸 */

	/* ベースフォントが16pxの場合 */
	--fontSize10: .625rem;
	--fontSize11: .687rem;
	--fontSize12: .75rem;
	--fontSize13: .812rem;
	--fontSize14: .875rem;
	--fontSize15: .937rem;
	--fontSize16: 1rem;
	--fontSize17: 1.062rem;
	--fontSize18: 1.125rem;
	--fontSize19: 1.187rem;
	--fontSize20: 1.25rem;
	--fontSize21: 1.312rem;
	--fontSize22: 1.375rem;
	--fontSize23: 1.437rem;
	--fontSize24: 1.5rem;
	--fontSize25: 1.562rem;
	--fontSize26: 1.625rem;
	--fontSize27: 1.687rem;
	--fontSize28: 1.75rem;
	--fontSize29: 1.812rem;
	--fontSize30: 1.875rem;
	--fontSize31: 1.937rem;
	--fontSize32: 2rem;
	--fontSize33: 2.062rem;
	--fontSize34: 2.125rem;
	--fontSize35: 2.187rem;
	--fontSize36: 2.25rem;
	--fontSize37: 2.312rem;
	--fontSize38: 2.375rem;
	--fontSize39: 2.437rem;
	--fontSize40: 2.5rem;
	--fontSize41: 2.562rem;
	--fontSize42: 2.625rem;
	--fontSize43: 2.687rem;
	--fontSize44: 2.75rem;
	--fontSize45: 2.812rem;
	--fontSize46: 2.875rem;
	--fontSize47: 2.937rem;
	--fontSize48: 3rem;
	--fontSize49: 3.062rem;
	--fontSize50: 3.125rem;

	/* ベースフォント18pxの場合 */
	/* --fontSize10: 0.555rem;
	--fontSize11: 0.611rem;
	--fontSize12: 0.666rem;
	--fontSize13: 0.722rem;
	--fontSize14: 0.777rem;
	--fontSize15: 0.833rem;
	--fontSize16: 0.888rem;
	--fontSize17: 0.944rem;
	--fontSize18: 1rem;
	--fontSize19: 1.055rem;
	--fontSize20: 1.111rem;
	--fontSize21: 1.166rem;
	--fontSize22: 1.222rem;
	--fontSize23: 1.277rem;
	--fontSize24: 1.333rem;
	--fontSize25: 1.388rem;
	--fontSize26: 1.444rem;
	--fontSize27: 1.5rem;
	--fontSize28: 1.555rem;
	--fontSize29: 1.611rem;
	--fontSize30: 1.666rem;
	--fontSize31: 1.722rem;
	--fontSize32: 1.777rem;
	--fontSize33: 1.833rem;
	--fontSize34: 1.888rem;
	--fontSize35: 1.944rem;
	--fontSize36: 2rem;
	--fontSize37: 2.055rem;
	--fontSize38: 2.111rem;
	--fontSize39: 2.166rem;
	--fontSize40: 2.222rem;
	--fontSize41: 2.277rem;
	--fontSize42: 2.333rem;
	--fontSize43: 2.388rem;
	--fontSize44: 2.444rem;
	--fontSize45: 2.5rem;
	--fontSize46: 2.555rem;
	--fontSize47: 2.611rem;
	--fontSize48: 2.666rem;
	--fontSize49: 2.722rem;
	--fontSize50: 2.777rem; */
}
/* ******************************************************************************************
	ベースフォント設定
****************************************************************************************** */
html{
	font-size: 16px;/* ベースフォント */
}
/* ******************************************************************************************
	body設定
****************************************************************************************** */
body{
	display: grid;/* フッター浮き上がり対策 */
	grid-template-rows: auto 1fr auto;/* フッター浮き上がり対策 */
	grid-template-columns: 100%;/* フッター浮き上がり対策 */
	min-height: 100vh;/* フッター浮き上がり対策 */
	background-color: #fff;
	color: var(--black);
	line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
	position: relative;/* 追従サイドボタンの基準設定 */
	overflow-x: hidden;
}

/* ******************************************************************************************
	テキスト設定
****************************************************************************************** */
/* pの中にrubyがあれば余白をあける */
p:has(>ruby){
	line-height: 2;
}
.txt-serif{
	font-family: "Zen Old Mincho", serif;
}
/* ******************************************************************************************
	画像設定
****************************************************************************************** */
img{
	vertical-align: bottom;/* 余白防止 */
	max-width: 100%;/* 画像のデフォルトサイズ */
	height: auto;
	object-fit: cover;
}
/* ******************************************************************************************
	フォーム設定（適宜設定）
****************************************************************************************** */
select{
	-webkit-appearance: auto;
	appearance: auto; /* デフォルトの矢印を表示 */
}
select:hover{
	cursor: pointer;
}
input{
	border: 1px solid rgb(0 0 0 / 20%);
}
[type="button"], [type="reset"], [type="submit"]{
	padding: 0 .5em;
	border: none;
	background-color: var(--mainColor);
	color: var(--black);
	cursor: pointer;
}
/* ******************************************************************************************
	リンク設定
****************************************************************************************** */
a{
	display: inline-block;
	color: var(--black);
	text-decoration: underline;
	text-underline-offset: .2rem;
	text-decoration-thickness: 1px;
	text-decoration-skip-ink: none;
}
a:hover, a:focus{
	text-underline-offset: .2rem;
	opacity: .6;
}
/* ******************************************************************************************
	フォーカス設定
****************************************************************************************** */
a:focus-visible, button:focus-visible, input:focus-visible, input:focus-visible, button:focus-visible, select:focus-visible{
	outline: 3px solid #000;
}
/* ******************************************************************************************
	リスト設定
****************************************************************************************** */
ol{
	list-style: decimal;/* リセットCSS打ち消し */
}
/* ******************************************************************************************
	電話番号設定（576px以下タップ有効化）
****************************************************************************************** */
/* タップ電話 */
a[href^="tel:"]{
	display: inline-block;
	text-decoration: none;
	pointer-events: none;
}
@media screen and (max-width:576px){
	a[href^="tel:"]{
		text-decoration: underline;
		cursor: pointer;
		pointer-events: auto;
		/* フォントサイズを変更する場合適宜修正 */
		/* font-size: 1.2rem; */
	}
}
/* ******************************************************************************************
	サイト幅設定（適宜設定）
****************************************************************************************** */
.ly_inner{
	width: calc(100% - 2rem);
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
	/* padding-right: 10px;
	padding-left: 10px; */
}

.front-page-main .ly_inner,header .ly_inner {
		max-width: 1220px;
}

.ly_inner.inner_wide {
    max-width: 1220px;
}

@media screen and (max-width:992px){
	.ly_inner,.front-page-main .ly_inner{
		width: calc(100% - 1.5rem);
	}
}
/* ******************************************************************************************
	サイト区切り設定（必要に応じて設定）
****************************************************************************************** */
.ly_section{
    /* padding-top: 2rem; */
    padding-bottom: 10rem;
}

@media screen and (max-width:992px){
.ly_section {
   padding-top: 0;
  padding-bottom: 5rem;

}	
}
/* ******************************************************************************************
	見出し設定
****************************************************************************************** */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	英語・日本語見出し
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.el_englishJapaneseTitle{
	margin-bottom: 50px;
	padding: 10px 20px;
	text-align: center;
}
.el_englishJapaneseTitle_english{
	display: block;
	font-size: var(--fontSize40);
	font-family: "Times New Roman", Times, "serif";
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	カラーライン見出し
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.el_colorLineTitle{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 50px;
}
.el_colorLineTitle_title{
	position: relative;
	padding: 0 30px;/* 見出しと線の余白 */
	background-color: var(--white);
	font-weight: bold;
	font-size: var(--fontSize21);
	text-align: center;
	z-index: 2;
	font-size: var(--fontSize32);
}
.el_colorLineTitle_line{
	display: inline-block;
	position: relative;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 2px;
	opacity: .5;
	border-radius: var(--borderRadius3);
	background-color: var(--purple);
	z-index: 1;
}
.el_colorLineTitle_line::after, .el_colorLineTitle_line::before{
	content: "";
	display: block;
	position: absolute;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 2px;
}
.el_colorLineTitle_line::before{
	top: calc(50% - 8px);
	left: calc(50% + 10px );
	background-color: var(--pink);
}
.el_colorLineTitle_line::after{
	top: calc(50% + 8px);
	left: calc(50% + 20px );
	background-color: var(--green);
}
/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	見出しH1のコメントアウト
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ******************************************************************************************
	見出しH2のコメントアウト
****************************************************************************************** */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	見出しH3のコメントアウト
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* ======================================================================
	見出しH4のコメントアウト
====================================================================== */

/* ------------------------------------------------------------
	見出しH5のコメントアウト
------------------------------------------------------------ */

/* -----
	見出しH6のコメントアウト
----- */

/* 説明のみのコメントアウト */

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	ヘッダー
//////////////////////////////////////////////////////////////////////////////////////////////////// */

.bl_sitelogo {
    /* margin-bottom: 1rem; */
       margin: 1rem 0 1rem 0;
}
.bl_sitelogo a{
    position: relative;
    text-decoration: none;
    font-size: var(--fontSize22);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.sp_wrap{
	display: none;
}

.bl_sitelogo a::before {
    content: '';
    display: block;
    background-image: url(../img/logo.png);
    width: 60px;
    height: 52px;
    
    /* ↓ここを修正・追加↓ */
    background-size: contain; 
    
    background-repeat: no-repeat;
    
    /* ↓不要なプロパティを削除↓ */
    /* object-fit: contain; */
    /* font-weight: bold; */
}
.bl_header-top {
display: flex;
    justify-content: space-between;
    max-width: 1220px;
    margin: 0 auto;
	align-items: center;
}

.sitelogo-mini{
	font-size: var(--fontSize18);
}


/* お問い合わせフォームボタン */
.contact-btn-icon {
  display: inline-flex; /* アイコンと文字を横並びにする */
  align-items: center; /* 垂直方向の中央揃え */
  padding: 12px 24px;
  color: #fff;
  background-color: var(--mainColor);
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.09);
}

.contact-btn-icon i {
  margin-right: 8px; /* アイコンと文字の間のスペース */
}

.contact-btn-icon:hover {
  background-color: #42912d;
  opacity: initial;
}
.bl_gNav_area .contact-btn{
display: none;
}

.bl_gNav_area.is_active .contact-btn{
    padding: 17px 24px;
    display: block;
    max-width: 68%;
    text-align: center;
    margin: 0 auto;
}
.bl_gNav_area.is_active .contact-btn .contact-btn-icon {
    display: block;
}



@media screen and (max-width: 992px){
	header.ly_header {
    height: 70px;
}
.bl_sitelogo {
margin: 0;
height: 70px;
}
.contact-btn{
	display: none;
}
.bl_gNav_area.is_active .contact-btn
 {
    max-width: 100%;

}
}

@media screen and (max-width: 576px){
	.bl_sitelogo a {
		font-size: var(--fontSize18);
		gap: 3px;
	}
	.sp_wrap{
		display: block;
	}
	.bl_sitelogo a::before {
    width: 40px;
    height: 39px;
}

.bl_sitelogo span{
	font-size: var(--fontSize16);
}
.bl_sitelogo span.sitelogo-mini{
	font-size: var(--fontSize12);
}

}



/* ******************************************************************************************
	グローバルメニュー
****************************************************************************************** */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	全体
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.bl_gNavUnit{
	display: flex;
	/* justify-content: flex-end; */
}
@media screen and (max-width:992px){
	.bl_gNav_area{
		position: fixed;
		top: 70px;
		right: -100%;
		overflow: auto;
		transition: .4s;
		width: 90%;
		height: calc(100vh - 70px);
		visibility: hidden;
		z-index: 3;
		background-color: #e2f9c7f7;
	}
	.bl_gNav_area.is_active{
		right: 0;
		visibility: visible;
	}
	.bl_gNav.is_open{
		left: 0;
		transition: all .6s;
	}
	.bl_gNav{
		overflow-x: hidden;
		overflow-y: auto;
		transition: all .6s;
		width: 100%;
		padding: 1rem 1rem 3rem;
	}
	.bl_gNavUnit{
		display: block;
		margin-bottom: 2rem;
	}
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	個別
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ============================================================
	グローバルメニューのリスト
============================================================ */
.bl_gNav_item{
	position: relative;
	flex: 1;
}
.bl_gNav_item + .bl_gNav_item::before{
content: '';
    display: block;
    width: 1px;
    height: 27px;
    background-color: var(--black);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.bl_gNav_link{
    display: flex
;
    justify-content: center;
    align-items: center;
    transition: all .3s;
    padding: 1.25rem .5rem;
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 3px;
    margin: 3px;
}


.bl_gNav_link:hover, .bl_gNav_link:focus{
	opacity: 1;
	background-color: var(--accentColor);
}
@media screen and (max-width:992px){
	.bl_gNav_item{
		width: 100%;
	}
	.bl_gNav_item + .bl_gNav_item::before{
		content: none;
	}

	.bl_gNav_link{
		position: relative;
		display: block;
		padding: 1rem;
		border-bottom: 1px dashed #baddb0;
	}
	.bl_gNav_link::after{
		content: "";
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		border: 5px solid transparent;
		border-left: 8px solid var(--mainColor);
		transition: .2s;
	}
	.bl_gNav_link:hover::after,.bl_gNav_link:focus::after{
		right: 7px;
		transition: .2s;
	}
}
/* ============================================================
	ハンバーガーメニュー
============================================================ */
.el_trigger{
	display: none;
}
@media screen and (max-width:992px){
	.el_trigger{
        display: block;
        position: absolute;
        top: 5px;
        right: 5px;
        transition: .2s;
        width: 50px;
        height: 50px;
        margin: 0;
        border: 2px solid var(--mainColor);
        background-color: var(--mainColor);
        cursor: pointer;
        z-index: 1000;
	}
	.el_trigger.is_active .el_trigger_line{
		background-color: transparent;
	}
	.el_trigger.is_active .el_trigger_line::before{
		top: 0;
		transform: rotate(45deg);
	}
	.el_trigger.is_active .el_trigger_line::after{
		top: 0;
		transform: rotate(-45deg);
	}
	.el_trigger.is_active .el_trigger_text::before{
		content: "閉じる";
	}
	.el_trigger_line{
		display: block;
		position: absolute;
		top: 16px;
		left: 50%;
		transform: translateX(-50%);
		transition: .4s;
		width: 30px;
		height: 2px;
		border-radius: 5px;
		background-color: #fff;
	}
	.el_trigger_line::before, .el_trigger_line:after{
		content: "";
		display: block;
		position: absolute;
		transition: inherit;
		width: 100%;
		height: 100%;
		background-color: #fff;
	}
	.el_trigger_line::before{
		top: -8px;
	}
	.el_trigger_line:after{
		top: 8px;
	}
	.el_trigger_text{
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		text-align: center;
	}
	.el_trigger_text::before{
		content: "メニュー";
		color: #fff;
		font-weight: bold;
		font-size: 10px;
	}
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	フッター
//////////////////////////////////////////////////////////////////////////////////////////////////// */
.bl_footer_box {
    width: 429px;
    margin: 0 auto;
}

.bl_footer_bg{
	background-color: var(--accentColor);
	background-image: url(../img/bg-page-ttl.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}
.bl_footer_flex{
	display: flex;
	justify-content: center;
	gap: 1rem;
	padding: 3rem 0 2rem;
}
.bl_footer_ttl{
	font-size: var(--fontSize24);
	font-weight: 500;
	margin-bottom: 1rem;
}

.bl_footer_ttl a{
	text-decoration: none;
}
footer address{
	text-align: center;
}

.copy{
	text-align: center;
	padding: .5rem;
	font-size: var(--fontSize14);
	color: #333333;
}



@media screen and (max-width:768px){
	.bl_footer_flex {
    flex-direction: column;
	padding: 1rem 0;
}
}
@media screen and (max-width:576px){
	.bl_footer_ttl a{
		font-size: 16px;
	}
}


/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	印刷用スタイル
//////////////////////////////////////////////////////////////////////////////////////////////////// */
@media print{
	body{
		/* 背景色反映のため */
		-webkit-print-color-adjust: exact;
	}
}