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


/* 変数 */
:root {
	--sectionContentPadding: 20px;
	--sectionContentPaddingV: 4em;
	--naviBgColorHover: #e9e9e9;
	--naviTxtColorHover: #333;
}


body {
	font-family: 'Noto Sans JP', sans-serif;
}
body.not_DCL * {
	transition: none!important;
	transition-delay: 0s!important;
}


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

/* ドロワーメニュースタイル */
: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);
	/*overflow: hidden;*/
}
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: 40px;
	padding: 30px;
	justify-content: center;
}
body.drawer--normal #drawerContents .drawer-btnBox a {
	max-height: 40px;
}
body.drawer--normal #drawerContents .drawer-btnBox .snsLink {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	max-width: 40px;
	padding: 0;
}
body.drawer--normal #drawerContents .drawer-btnBox .snsLink .snsIcon {
	max-height: 100%;
	width: auto;
}


/* ドロワーメニューサブメニュー展開 */
#drawerContents .gnaviContents>li>.sub-menu {
	overflow: hidden;
	transition: all .7s ease;
}
#drawerContents .gnaviContents>li.open>.sub-menu {
	height: auto;
}
#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;
}


/* 柔軟なレイアウト */
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(--sectionContentPadding) * 0.5);
}
section .sectionContent .mb_x1 {
	margin-bottom: calc(var(--sectionContentPadding) * 1);
}
section .sectionContent .mb_x1p5 {
	margin-bottom: calc(var(--sectionContentPadding) * 1.5);
}
section .sectionContent .mb_x2 {
	margin-bottom: calc(var(--sectionContentPadding) * 2);
}
section .sectionContent .mb_x2p5 {
	margin-bottom: calc(var(--sectionContentPadding) * 2.5);
}
section .sectionContent .mb_x3 {
	margin-bottom: calc(var(--sectionContentPadding) * 3);
}
section .sectionContent > [class*=mb_]:last-child {
	margin-bottom: 0;
}

section.commonColor_pink {
	background-color: pink;
}
section.commonColor_lightgray {
	background-color: #eeeeee
}
section[class*=commonColor] .sectionContent {
	padding: var(--sectionContentPadding);
	background-color: #fff;
}


/* フッター */
#FOOTER {
    background: #CDC7B7;
}


.footCopyright {
    padding: 30px;
}


#HEADERSET {
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(255,255,255,0.8);
    z-index: 10;
}


.kome100 {
	line-height: 2;
}

.top_service_box img {
    width: 100%;
}

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

.flex_item {
	margin-bottom: 3em;
}

.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: 20px;
    border-bottom: 1px solid #cccccc;
}

.t_r {
    width: 30%;
    text-align: right;
	vertical-align: middle;
    padding: 20px;
    border-bottom: 1px solid #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;
}



.top_service_box div {
	padding: 20px;
    background: rgba(255,255,255,0.7);
    line-height: 2.5;
}



/* ふんわり表示＋上にスライド */
.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);
}