@charset "utf-8";

/*
	* 顧客オリジナルスタイルシート
	* サイト全体に関するスタイル
	* ver1
	* Copyright (C) ●●など
	* 更新履歴
		└ 
*/
/* *{
	border:solid 1px #ccc;
} */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	初期設定（不要なものは削除）
//////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ******************************************************************************************
	root設定（適宜修正）（フォントはベースフォント外を削除してください。）
****************************************************************************************** */
:root{
	--black: #181312;
	/* --mainColor: #2b2121; */
	--mainColor: #3b1f18;
	--accentColor: #004ea2;
	--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;/* ベースフォント */
	overflow-x: hidden;
}

@media screen and (max-width:576px){
	html{
		font-size: var(--fontSize14);
	}
}
/* ******************************************************************************************
	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;
    letter-spacing: 0.1rem;
   font-family:  "BIZ UDPGothic", sans-serif;;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
	position: relative;/* 追従サイドボタンの基準設定 */
	background: url(../img/bg.png) repeat center;
	padding-top: 80px;
	overflow-x: hidden;
}
body.page-template-front-page-php{padding-top: 0;}
@media screen and (max-width:992px){
	body{
	padding-top: 50px;
}
}




/* ******************************************************************************************
	テキスト設定
****************************************************************************************** */
/* pの中にrubyがあれば余白をあける */
p:has(>ruby){
	line-height: 2;
}
/* ******************************************************************************************
	画像設定
****************************************************************************************** */
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: 100%;
	max-width: 1220px;
	margin-right: auto;
	margin-left: auto;
	/* padding-right: 10px;
	padding-left: 10px; */
}

.ly_inner_wide{
	width: calc(100% - 1rem);
	margin: 0 auto;
	max-width: 1400px;
}

@media screen and (max-width:1220px){
	.ly_inner,.ly_inner_wide {
    padding-left: 60px;
    padding-right: 60px;
}
}
@media screen and (max-width:768px){
	.ly_inner,.ly_inner_wide {
    padding-left: 10px;
    padding-right: 10px;
}
}


/* ******************************************************************************************
	サイト区切り設定（必要に応じて設定）
****************************************************************************************** */
.ly_section{
	padding-top: 3rem;
	padding-bottom: 3rem;
}
/* ******************************************************************************************
	見出し設定
****************************************************************************************** */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	英語・日本語見出し
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.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のコメントアウト
----- */

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

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	ヘッダー
//////////////////////////////////////////////////////////////////////////////////////////////////// */
header {
    height: 80px;
    position: absolute;
    z-index: 100;
    width: 100%;
}
.header-top{
	padding: .5rem 1rem;
}

.sitetitle{
	max-width: 400px;
}

.header_wrap{
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
	backdrop-filter: blur(5px);
    align-items: center;
    justify-content: space-between;
}
/* スクロールで上から出てくるメニュー */
.fixed-header {
  position: fixed;
  top: -80px;
  left: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  width: 100%;
}

.fixed-header.is-show {
  top: 0;
  visibility: visible;
}
/* #js-fixed-header .bl_gNavUnit{
	width: calc(100% - 400px);
} */

.js-fixed-header-wrap {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    background-color: #ffffff82;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 11px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(15px);
}
.js-fixed-header-sitettl{
	width: 400px;
}

.js-fixed-header-wrap .bl_gNav_item {
    flex: initial;
}
.js-fixed-header-wrap .bl_gNav_link {
    padding: 1.75rem 1.75rem;
	color: var(--black);
	text-shadow: none;
}

.js-fixed-header-wrap .bl_gNav_item + .bl_gNav_item::before {
    background-color: var(--black);
}


/* サイトタイトル・住所 */
.bl_header-top-flex {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
	gap: 2rem;
	
}
.tel {
    font-size: var(--fontSize24);
    font-weight:500;
}
.h-add {
    text-align: center;
}

.time{
	 background: #231815;
    margin: 3px 0 0;
    padding: 3px;
    color: #fff;
    font-size: var(--fontSize14);
    }

/* コピー */
.copy{
font-size: var(--fontSize12);
margin-bottom: .75rem;
}

.bl_gNav > .fas_sns_icontopcolor{
	justify-content: flex-end;
}

.bl_gNav > .fas_sns_icontopcolor li{
	background-color: initial;
}
.bl_gNav > .fas_sns_icontopcolor li a{
	padding: 0;
	background-color: initial;
}

/* ハンバーガーメニュー内のSNSリンク */
.sp-sns-link-list-wrap{
	display: none;
}


@media screen and (max-width: 1270px){
	.js-fixed-header-wrap .bl_gNav_link{
  padding: 1.75rem .8rem;
}
.sitetitle,.js-fixed-header-sitettl{
    max-width: 300px;
}
.header-top {
    padding: 0;
}

}
@media screen and (max-width: 992px){
 .copy{
	display: none;
 }
 .h-add{
	display: none;
 }
 header {
    height: 50px;
	/* display: flex;
    align-items: center; */
}

.header_wrap{
	/* background-color: initial; */
	height: 50px;
}

#js-fixed-header{
	display: none;
}
}

@media screen and (max-width: 768px) {
/* ハンバーガーメニュー内のSNSリンク */
.sp-sns-link-list-wrap{
	display: block;
	padding: 0 1rem 3rem;
}
.fas_sns_icontopcolor.sp-sns-link-list{
	display: flex;
}
.fas_sns_icontopcolor.sp-sns-link-list li a{
	width: 100px;
	height: 100px;
	padding: 0;
}
/* ハンバーガーメニュー内見出し */
/* 左右に横線 */
.js_navArea-ttl {
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: center; /* 文字を中央寄せ */
  font-weight: var(--fontSize18);
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
}
.js_navArea-ttl::before,
.js_navArea-ttl::after {
  background-color: #fff; /* 横線の色 */
  content: "";
  height: 1px; /* 横線の高さ */
  width: 105px; /* 横線の長さ */
}
.js_navArea-ttl::before {
  margin-right: 15px; /* 文字との余白 */
}
.js_navArea-ttl::after {
  margin-left: 15px; /* 文字との余白 */
}

}

@media screen and (max-width: 576px) {
    .sitetitle {
        max-width: 260px;
    }

}
/* ******************************************************************************************
	グローバルメニュー
****************************************************************************************** */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	全体
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.bl_gNavUnit{
	display: flex;
}
.bl_gNavContainer {
    width: 100%;
    position: absolute;
    top: 0;
}


@media screen and (max-width:992px){
	.bl_gNav_area{
	position: fixed;
        top: 0;
        right: -100%;
        overflow: auto;
        transition: .4s;
        width: 90%;
        height: 100vh;
        visibility: hidden;
        background-color:#4d3028fa;
        z-index: 2;
	}
	.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: 7rem 1rem 3rem;
	}
	.bl_gNavUnit{
		display: block;
		margin-bottom: 2rem;
	}
	.bl_gNav_area.is_active > .bl_gNav_item{
		color: #fff;
	}
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	個別
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ============================================================
	グローバルメニューのリスト
============================================================ */
.bl_gNav_item{
	position: relative;

	/* flex: 1; */

}

.bl_gNav_item + .bl_gNav_item::before{
	content: '';
	display: block;
	width: 1px;
	height: 15px;
	background-color:var(--black);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.page-template-front-page .bl_gNav_item + .bl_gNav_item::before{
	background-color:#fff;
}
#js-fixed-header .bl_gNav_item + .bl_gNav_item::before{
	background-color: var(--black);
}

.bl_gNav_link,#js-fixed-header .bl_gNav_link{
    font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
        padding: 1.75rem 1.75rem;
    font-size: 1.1rem;
    color:var(--black);
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
	text-shadow: none;
}
.page-template-front-page .bl_gNav_link{
	color: #fff;
	text-shadow: 3px 0px 10px rgb(0 0 0);
}


.bl_gNav_link:hover{
	opacity: .6;
	transition: .8s;
}



@media screen and (max-width:1200px){
.bl_gNav_link {
  padding: 1.75rem .8rem;
}
}
@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 solid #ccc;
		color: #fff;
	}
	.bl_gNav_link::after{
		content: "";
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		border: 5px solid transparent;
		border-left: 8px solid #fff;
		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: fixed;
        top: 0px;
        right: 0;
        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: 22px;
        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: -10px;
	}
	.el_trigger_line:after{
		top: 10px;
	}
	.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: 13px;
	} */
}


/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	フッター
//////////////////////////////////////////////////////////////////////////////////////////////////// */
footer {
    background-repeat: repeat;
    background-position: center;
    padding: 3rem 0;
    background-size: cover;
    /* margin-top: 5rem; */
    background-color: #211313d6; /* This will be visible if the image doesn't fully cover */
    color: #fff;
    background-image: url(../img/img-kodawari4.jpg);
    position: relative; /* Required for absolute positioning of the pseudo-element */
    z-index: 1; /* Ensures the footer content is above the overlay */
}

footer::before {
    content: ''; /* Essential for pseudo-elements to render */
    position: absolute; /* Positions the overlay precisely over the footer */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background-color: rgb(22 17 17 / 69%);
    z-index: -1; /* Places the overlay behind the footer content but above the background image */
}
.footer-ttl{
	text-align: start;
	font-size: var(--fontSize28);
	font-weight: bold;
}

footer a{
	color: #fff;
}

.bl_footer_wrap{
	display: flex;
	justify-content: space-between;
}

.copyright{
padding: 10px;
    font-size: var(--fontSize12);
    text-align: center;
	background-color: #fff;
}

address.telbox {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (max-width:992px){

.bl_footer_wrap {
    flex-direction: column;
}
}

@media screen and (max-width:576px){
	.footer-ttl {
    font-size: var(--fontSize20);
}
}


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