@charset "utf-8";
/* CSS Document */


body {
	font-family: "Noto Serif JP", system-ui;
}
body.not_DCL * {
	transition: none!important;
	transition-delay: 0s!important;
}


/* ナビゲーション */
:root {
	--naviBgColorHover: #e9e9e9;
	--naviTxtColorHover: #333;
	--linkColor: #000;
}


/* バーガーボタンスタイル */
.drawer-hamburger {
  /* バーガーアイコン線の太さ */
  --hamburgerIconThin: 2px;
  /* バーガーアイコン線の間隔 */
  --hamburgerIconGap: 6px;
  /* バーガーアイコン線の色 */
	--hambutgerBorderColor: #333;
  /* ボタンの幅 */
  --hamburgerWidth: 2em;
  /* ボタンの高さ */
  /*--hamburgerHeight: 60px;*/
  /* ボタンのパディング左右 */
  --hamburgerPaddingH: 15px;
  /* ボタンの角丸 */
	--hamburgerBorderRadius: 0;
  /* ボタンの背景色 */
  --hamburgerBgColor: rgba(255,255,255,0.5);
  /* バーガーアイコンと文字の間隔 */
	--hamburgerGapIcon2Txt: 7px;
}
body.drawer--normal .drawer-hamburger {
  color: var(--hambutgerBorderColor);
  height: var(--hamburgerHeight, var(--headerHeight));
  border-radius: var(--hamburgerBorderRadius);
  gap: var(--hamburgerGapIcon2Txt);
}

/* ドロワーメニュースタイル */
:root {
	--drawerWidth:16.25rem;
  --drawerBgColor: #fff;
  --drawerBorder: 1px solid #b1b1b1;
	--drawerULPL: 0px;
}
body.drawer--normal #drawerContents .drawer-menu {
  padding-left: var(--drawerULPL);
	margin-bottom: 0;
}
body.drawer--normal #drawerContents .drawer-menu li {
	border-top: var(--drawerBorder);
}
body.drawer--normal #drawerContents .drawer-menu > li:last-child {
	border-bottom: var(--drawerBorder);
}
body.drawer--normal #drawerContents .drawer-menu .sub-menu {
	--drawerULPL: 28px;
	/*margin-top: -1px;*/
	margin-bottom: 0;
	padding-left: var(--drawerULPL);
}
body.drawer--normal:not(.drawer--subOpCl) #drawerContents .drawer-menu .sub-menu {
	border-top: var(--drawerBorder);
}
body.drawer--normal.drawer--subOpCl #drawerContents .drawer-menu .sub-menu {
	border-top: var(--drawerBorder);
	/*border-color: transparent;*/
}
body.drawer--normal.drawer--subOpCl #drawerContents .drawer-menu .open .sub-menu {
	border-top: var(--drawerBorder);
}
body.drawer--normal #drawerContents .drawer-menu .sub-menu > :first-child {
	margin-top: -1px;
}
body.drawer--normal #drawerContents .drawer-menu a {
	position: relative;
	display: block;
	margin: 0;
	padding: 0.8em 1em;
	color: currentColor;
}
body.drawer--normal #drawerContents .drawer-menu > li > a {
	font-weight: bold;
}
body.drawer--normal #drawerContents .drawer-menu .sub-menu a {
  font-size: 0.9em;
	padding-left: 0;
}
body.drawer--normal #drawerContents .drawer-menu a:hover {
	text-decoration: none;
	color: var(--naviTxtColorHover);
}
body.drawer--normal #drawerContents .drawer-menu a:hover:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(-1 * var(--drawerULPL));
	right: 0;
	background-color: var(--naviBgColorHover);
	z-index: -1;
}
body.drawer--normal #drawerContents .drawer-btnBox {
	display: flex;
	gap: 20px;
	padding: 20px;
	justify-content: center;
	flex-wrap: wrap;
}
body.drawer--normal #drawerContents .drawer-btnBox a {
	max-height: 30px;
}
body.drawer--normal #drawerContents .drawer-btnBox .snsLink {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	max-width: 30px;
	padding: 0;
}
body.drawer--normal #drawerContents .drawer-btnBox .snsLink .snsIcon {
	max-height: 100%;
}


/* ドロワーメニューサブメニュー展開 */
.drawer--subOpCl #drawerContents .drawer-menu li .naviSubOpclBox {
	height: 0px;
	transition: all .5s ease;
	overflow: hidden;
}
#drawerContents .gnaviContents>li>a {
	display: flex;
}
#drawerContents .gnaviContents>li>a .subMenuIcon:before {
	content: '＋';
	display: inline-block;
	margin-right: 0.2em;
}
#drawerContents .gnaviContents>li.open>a .subMenuIcon:before {
	content: '－';
}


/* サブページティザータイトル */
.pageClassSubpage #sub_TH_ImgTitle {
	text-align: center;
	background-color: #0a0a0a;
	padding: 1em;
	color: #fff;
	font-size: 1.6em;
	font-weight: bold;
}


/* 記事セットBox */
.articleSet {
	gap: calc(var(--commonGap) * 1.3) var(--commonGap);
}


/* グリッドBox */
.gridBox {
	display: grid;
	gap: var(--commonGap);
	grid-auto-rows: min-content; /* 印刷時の崩れ対策 */
}


/* 柔軟なレイアウト */
:root {
	--sectionContentPaddingV: 4em;
	--sectionContentChildGapV: 20px;
	--headersetGapT: 15px;
    --headersetGapB: 15px;
}
section {
	display: inline-block;
	width: 100%;
	padding: 0 var(--contentsPaddingSide);
	margin: 0 auto;
}
section .sectionContent {
	padding: 0;
	margin: var(--sectionContentPaddingV) auto;
}
section .sectionContent .mb_xp5 {
	margin-bottom: calc(var(--sectionContentChildGapV) * 0.5);
}
section .sectionContent .mb_x1 {
	margin-bottom: calc(var(--sectionContentChildGapV) * 1);
}
section .sectionContent .mb_x1p5 {
	margin-bottom: calc(var(--sectionContentChildGapV) * 1.5);
}
section .sectionContent .mb_x2 {
	margin-bottom: calc(var(--sectionContentChildGapV) * 2);
}
section .sectionContent .mb_x2p5 {
	margin-bottom: calc(var(--sectionContentChildGapV) * 2.5);
}
section .sectionContent .mb_x3 {
	margin-bottom: calc(var(--sectionContentChildGapV) * 3);
}
section .sectionContent > [class*=mb_]:last-child {
	margin-bottom: 0;
}

section.commonBg_pink {
	background-color: pink;
}
section.commonBg_lightgray {
	background-color: #eeeeee;
	padding: 50px 15px;
}
section.commonBg_shopinfo {
	background-image: url("../images/shopinfo_bg.webp");
    background-size: cover;
    background-position: center;
}
section.commonBg_aburakasu {
	padding: 100px 30px;
	background-image: url("../images/aburakasu_bg.webp");
    background-size: cover;
    background-position: center;
}
section[class*=commonBg_] .sectionContent:not(.noBg) {
	padding: var(--sectionContentChildGapV);
	background-color: rgba(255, 255, 255, 0.9);
}


/* .flow ユーティリティ（カスタム） */
:is(.flow, .txtBox) > * + * {
	margin-block-start: var(--flowSpace, var(--sectionContentChildGapV));
}
:is(.flow, .txtBox) > * + h1 {
	 margin-block-start: calc(var(--flowSpace, var(--sectionContentChildGapV)) * 6); 
}
:is(.flow, .txtBox) > * + h2 {
	 margin-block-start: calc(var(--flowSpace, var(--sectionContentChildGapV)) * 4); 
}
:is(.flow, .txtBox) > * + h3 {
	 margin-block-start: calc(var(--flowSpace, var(--sectionContentChildGapV)) * 2.5); 
}
:is(.flow, .txtBox) > * + h4 {
	 margin-block-start: calc(var(--flowSpace, var(--sectionContentChildGapV)) * 1.7); 
}
:is(.flow, .txtBox) > * + h5 {
	 margin-block-start: calc(var(--flowSpace, var(--sectionContentChildGapV)) * 1.5); 
}
:is(.flow, .txtBox) > * + h6 {
	 margin-block-start: calc(var(--flowSpace, var(--sectionContentChildGapV)) * 1.2); 
}
.txtBox,
.flow :is(h2 + *, h3 + *, h4 + *, h5 + *, h6 + *) {
	--flowSpace: 1em;
}


/* ふんわり表示＋上にスライド */
.fx_funwari_up {
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s cubic-bezier(0.390, 0.575, 0.565, 1.000);
}
.sd-enterd.fx_funwari_up {
	opacity: 1;
	transform: translateY(0px);
}



#HDBTN {
    padding-right: 10px;
}

/* フッター */
#FOOTER {
    background: #000000;
	color: #ffffff;
}

#backtopPosiBox {
    bottom: 20px;
}

.footCopyright {
    padding: 30px;
}

#HEAD {
	padding-top: inherit;
}


#HEADERSET {
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
}

#HDLOGO {
  margin-bottom: var(--headersetGapB);
  height: 100%;
  max-width: 120px;
}


.kome100 {
	line-height: 2;
}

.top_service_box img,
.top_service_box2 img {
    width: 100%;
}

.flex_box {
    display: flex;              /* フレックスボックスにする */
	flex-direction: column;
}

.flex_item {
	margin-bottom: 3em;
	margin-left: auto;
    margin-right: auto;
}

.gray_circle {
    width: 200px;
    height: 200px;
    background: #cccccc;
    border-radius: 50%;
    margin-bottom: 2em;
    margin-left: auto;
    margin-right: auto;
}

.gray_sample {
    width: 100%;
    height: 35vw;
    background: #cccccc;
    border-radius: 20px;
    margin-bottom: 2em;
    margin-left: auto;
    margin-right: auto;
}


/* テーブル　料金 */
.t_l {
    width: 70%;
    text-align: left;
	vertical-align: middle;
    padding: 10px;
    border-bottom: 1px dotted #cccccc;
}

.t_r {
    width: 30%;
    text-align: right;
	vertical-align: middle;
    padding: 10px;
    border-bottom: 1px dotted #cccccc;
}



/* リンクボタン */
.button-rink, .button-rink:visited {
    width: 100%;
	font-size: 1em;
    font-weight: bold;
    display: inline-block;
    padding: 15px 0;
    color: #222222 !important;
	border: 1px solid #D9A300;
    position: relative;
    cursor: pointer;
    text-align: center;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
    text-decoration: none;
	border-radius: 100px;
}

.button-rink:hover{
    background: #D9A300;
    text-decoration: none;
    color: #ffffff !important;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
}

/* リンクボタン Mail */
.button-rink_mail, .button-rink_mail:visited {
    width: 100%;
	font-size: 18px;
    display: inline-block;
    padding: 15px 0;
    color: #D9A300 !important;
	border: 1px solid #D9A300;
    position: relative;
    cursor: pointer;
    text-align: center;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
    text-decoration: none;
	border-radius: 50px;
}

.button-rink_mail:hover{
    background: #D9A300;
    text-decoration: none;
    color: #ffffff !important;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
}

/* リンクボタン LINE */
.button-rink_line, .button-rink_line:visited {
    width: 100%;
	font-size: 18px;
    display: inline-block;
    padding: 15px 0;
    color: #00B900 !important;
	border: 1px solid #00B900;
    position: relative;
    cursor: pointer;
    text-align: center;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
    text-decoration: none;
	border-radius: 50px;
}

.button-rink_line:hover{
    background: #00B900;
    text-decoration: none;
    color: #ffffff !important;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
}


.contact_box {
	border: 1px solid #cccccc;
	border-radius: 20px;
}


/* Q&A */
.faq_l {
    width: 40px;
    font-size: 1.4em;
    vertical-align: middle;
}

.faq_r {
    vertical-align: middle;
	padding-right: 40px;
	font-size: 13px;
}


/* お問い合わせ　見出し */
.contact_midashi {
	border-left: 10px solid #cccccc;
    padding-left: 10px;
}


/* お問い合わせ　Homeへ戻るボタン */
.btnStd {
    padding: 0.5em 2em;
}

.mfp_element_submit,.mfp_element_reset,.mfp_element_button,button.mfp_next,button.mfp_prev {
	color: #000000;
}


.googlemap-sample {
    width: 100%;
    height: 400px;
    background: #cccccc;
    text-align: center;
    line-height: 400px;
}

/* テキストにマーカー風の線 */
.highlight {
    background: linear-gradient(transparent 50%, #FFDC73 0%);
    line-height: 1.7em;
    padding: 0 5px;
}


.annka {
	color: #c20000;
	font-size: 4.5vw;
	font-weight: bold;
	padding-bottom: 10px;
}

.aburakasu-bottom {
	margin-bottom: 2em;
}


.top_service_box div,
.top_service_box2 div{
    padding: 20px;
    background: rgba(245,245,245,0.8);
}