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

html {
	font-size: 10px;
}

body {
	-webkit-text-size-adjust: 100%;
	color: #000;
	font-family: Verdana, 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	line-height: 1.6;
	letter-spacing: 0.1rem;
	font-size: 1.4rem;
	/*background-color: #B4CD80;*/
	background-color: #213F23;
}


/* fonts
-------------------------------------------------------------- */

@font-face {
    font-family: 'serif';
    src: url('../fonts/pt_serif.eot');
    src: url('../fonts/pt_serif.eot?#iefix') format('embedded-opentype'),
         url('../fonts/pt_serif.woff2') format('woff2'),
         url('../fonts/pt_serif.woff') format('woff'),
         url('../fonts/pt_serif.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: 'JPtx';
	src: url('../fonts/NotoSansCJKjp-Thin.eot');
	src: url('../fonts/NotoSansCJKjp-Thin.eot?#iefix') format('embedded-opentype'),
		  url('../fonts/NotoSansCJKjp-Thin.woff2') format('woff2'),  
		  url('../fonts/NotoSansCJKjp-Thin.woff') format('woff'),
		  url('../fonts/NotoSansCJKjp-Thin.ttf') format('truetype');
		  font-style: normal;
		  font-weight: 100; 
}


.gtc {
	font-family: Verdana, 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
}

.mnc {
	font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;
}

.maru {
	font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

.serifTx {
	font-family: serif, "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;
}

.jpnTx {
	font-family: JPtx, Verdana, 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-weight: 100;
}
	


/* Debug
-------------------------------------------------------------- */

.scrollValue {
    margin: 0;
    position: fixed;
    right: 10px;
    top: 10px;
	color: #066;
	font-size: 35px;
	z-index: 200;
}


/* samples
-------------------------------------------------------------- */

.sample_textLR {
	text-align: justify;
	text-justify: inter-ideograph;
}

.sample_minFontSize {
	font-size: 23px;
	font-size: -webkit-calc(23px + 12vw);
	font-size: -moz-calc(23px + 12vw);
	font-size: calc(23px + 12vw);
	line-height: 36px;
	line-height: -webkit-calc(36px + 12vw);
	line-height: -moz-calc(36px + 12vw);
	line-height: calc(36px + 12vw);
}

.sample_radius {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.sample_grad {
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), color-stop(0.9,rgba(255,255,255,0)));
	background: -webkit-linear-gradient(top, #FFF, rgba(255,255,255,0) 90%);
	background: linear-gradient(to bottom, #FFF, rgba(255,255,255,0) 90%);
}

.sample_transition {
	transition: .5s;
}

.sample_transition:hover {
	opacity: .7;
}

.sample_radial {
	transform: rotate(-2deg);
	-moz-transform: rotate(-2deg);
	-webkit-transform: rotate(-2deg);
	-o-transform: rotate(-2deg);
	-ms-transform: rotate(-2deg);
}

.sample_noSelect {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.sample_shadow_box {
	/*左右 上下 ぼかし 広がり 色 内側指定（inset）*/
	box-shadow: 2px 2px 4px;
}

.sample_shadow_text {
	font-family: largetxt, "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;
	text-shadow: 0 0 15px #272727;
}


/* general
-------------------------------------------------------------- */

.onlyPC, .onlyPC_il {
	display: none;
}

.onlySP_il {
	display: inline
}

.mgb20 {margin-bottom: 20px !important;}
.mgb30 {margin-bottom: 30px !important;}

.alignC {text-align: center;}

.body {
	display: none;
}


/* menu
-------------------------------------------------------------- */

@keyframes checked-anim {
    100% {
        width: 100%;
    }
}

@keyframes not-checked-anim {
    0% {
        width: 100%;        
    }
}

.bt_pageTop {
	display: none;
	width: 40px;
	padding: 20px 0 7px;
}

.bt_img_pageTop {
	width: 100%;
}

.bt_pageTop:hover {
	opacity: .8;
}

.bt_spc0 {
	display: none;
	max-width: 364px;
	margin: 0 auto 50px;
	text-align: center;
}

.ul_menu {
    display: none;
	font-size: 0;
	letter-spacing: 0;
	max-width: 960px;
	margin: 0 auto 47px;
}

#burger {
    position: fixed;
    top: 7px;
    right: 7px;
    background-image: url(../images/icon_bt_menu_open.svg);
	background-repeat: no-repeat;
	background-position: center center;
    width: 40px;
    height: 40px;
    transition: .5s ease;
    cursor: pointer;
    z-index: 300;
}

#menu-toggle:checked + #burger {
    transform: rotate(180deg);
    transition: transform .5s ease;
}

#main_menu {
    position: fixed;
	right: 0;
    width: 0;
    height: 100%;
    animation: not-checked-anim .2s both;
    transition: .5s;
	text-align: center;
}

#menu-toggle:checked ~ #main_menu {
    animation: checked-anim .5s ease both;
	background-color: rgba(0,0,0,.8);
	z-index: 200;
}

#menu-toggle:checked ~ #burger {
	background-image: url(../images/icon_bt_menu_close.svg);
	background-repeat: no-repeat;
	background-position: center center;
}

#menu-toggle:checked ~ #main_menu .ul_menu {
    display: block;
}

#menu-toggle:checked ~ #main_menu .bt_pageTop {
    display: inline-block;
}

#menu-toggle:checked ~ #main_menu .bt_spc0 {
    display: block;
}

[type="checkbox"]:not(:checked), [type="checkbox"]:checked {
    display: none;
}

.atcl_menu2 {
	padding: 28px 0;
	background-color: #0D0D0D;
}

.ul_menu2 {
	font-size: 0;
	letter-spacing: 0;
	text-align: center;
}

.li_menu {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	margin-bottom: 13px;
}

.li_menu:last-child {
	margin-bottom: 0;
}

.a_menu, .a_menu:visited {
	color: #FFF;
	letter-spacing: .2rem;
	display: block;
	padding: 17px 19px 17px 0;
	line-height: 1;
	text-align: right;
	font-family: serif, "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;
	font-size: 2.1rem;
	background-position: center center;
	background-size: cover;
}

.a_menu_dishes {background-image: url(../images/bg_bt_dishes.jpg);}
.a_menu_catering {background-image: url(../images/bg_bt_catering.jpg);}
.a_menu_gallery {background-image: url(../images/bg_bt_gallery.jpg);}
.a_menu_access {background-image: url(../images/bg_bt_access.jpg);}
.a_menu_contact {background-image: url(../images/bg_bt_catering.jpg);}

.a_menu:hover {
	opacity: .8;
}

.title_menu2 {
	text-align: center;
	background-image: url(../images/bg_title_menu2.svg);
	background-position: center center;
	background-repeat: no-repeat;
	font-size: 2.9rem;
	letter-spacing: .4rem;
	color: #FFF;
	text-indent: .2rem;
	margin-bottom: 35px;
}




/* header
-------------------------------------------------------------- */


.hdr_dmy {
	color: #0D0D0D;
	width: 100vw;
	height: 100vh;
	position: relative;
	text-align: center;
}

.logo_hdr_dmy {
	display: block;
	width: 80%;
	max-width: 420px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto auto;
	z-index: -1;
}

.txSpc_hdr_dmy {
	position: absolute;
	bottom: 15px;
	padding: 0 10px;
	right: 0;
	left: 0;
	margin: 0 auto;
	z-index: -1;
}

.tx1_hdr_dmy{
	font-size: 1.4rem;
	color: #595959;
}

.tx2_hdr_dmy {
	font-size: 1.3rem;
	color: #EEE;
}



#pageTop {
	position: absolute;
	top: 0;
}


.hdr {
	color: #0D0D0D;
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: -1;
	text-align: center;
}

.hdr_bgFader {
	position:absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.hdr_bgFader_img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

.bg_white1 {
	text-align: center;
	background-color: rgba(33,63,35,.3);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	z-index: -1;
	width: 100%;
	max-height: 380px;
	height: 33vh;
	
}

.logo_hdr {
	height: 33vh;
	max-width: 380px;
	max-height: 380px;
}

.arrow_btm1 {
	position: fixed;
	z-index: 100;
	left: 0;
	right: 0;
	width: 50px;
	margin: 0 auto;
	bottom: 37px;
	-webkit-animation: sdb 1.5s infinite;
	animation: sdb 1.5s infinite;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 20px);
    opacity: 0;
  }
}




/* main-intro1
-------------------------------------------------------------- */


.ricas_main {
	position: relative;
	top: 0;
	padding-top: 100vh;
}

.intro_ricas {
	background-image: url(../images/bg_img_intro.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 70px 10px;
}

.bg_white2 {
	background-color: rgba(255,255,255,.8);
	padding: 87px 15px 30px 15px;
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
	background-image: url(../images/icon_leaf1.svg);
	background-repeat: no-repeat;
	background-position: center top 20px;
}

.h3_intro_ricas {
	font-size: 2.4rem;
	color: #213F23;
	margin-bottom: 14px;
}

.tx1_intro_ricas {
	color: #0D0D0D;
	font-size: 1.2rem;
	margin-bottom: 15px;
}


.atcl_photo {
	font-size: 0;
	line-height: 1;
	letter-spacing: 0;
	padding: 18px 0;
	background-color: #0D0D0D;
	overflow: hidden;
}

.atcl_photo_inner {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.photo_wrap {
	width: 2570px;
}

.fig_photo {
	display: inline-block;
	margin: 4px;
}

.img_photos {
	height: 150px;
}



.bg_paralax1 {
	position: fixed;
	width: 100%;
	height: 100%;
	background-image: url(../images/bg_img_intro2.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: -2;
	background-color: blue;
	display: none;
}

.intro2_ricas {
	padding: 20px 10px;
}

.bg_white3 {
	background-color: rgba(255,255,255,.8);
	padding: 60px 15px;
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
}

.bg_white3::before {
	content: '';
	position: absolute;
	width: 260px;
	height: 20px;
	background-image: url(../images/bg_br1_top.svg);
	background-repeat: no-repeat;
	background-position: center center;
	bottom: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.bg_white3::after {
	content: '';
	position: absolute;
	width: 260px;
	height: 20px;
	background-image: url(../images/bg_br1_bottom.svg);
	background-repeat: no-repeat;
	background-position: center center;
	top: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.h3_intro2A_ricas {
	font-size: 2.6rem;
	color: #213F23;
	margin-bottom: 14px;
	line-height: 1.3;
}

.tx1_intro2_ricas {
	color: #0D0D0D;
	font-size: 1.2rem;
	margin-bottom: 15px;
}

.tx1_intro2_ricas:last-child {
	margin-bottom: 0;
}


.h3_intro2B_ricas {
	font-size: 1.8rem;
	color: #213F23;
	margin-bottom: 14px;
	line-height: 1.6;
}



/* profile
-------------------------------------------------------------- */


.atcl_profile {
	background-image: url(../images/bg_sheet.jpg);
	position: relative;
	padding: 50px 10px 10px;
}

.atcl_profile::before {
	content:'';
	background-image: url(../images/bg_sheet_hole.svg);
	width: 100%;
	height: 18px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.wrap1 {
	max-width: 1280px;
	margin: 0 auto;
	font-size: 0;
	letter-spacing: 0;
	text-align: center;
}

.h3_leaf_spc {
	text-align: left;
}

.h3_leaf2 {
	color: #00693E;
	font-size: 2.5rem;
	margin-bottom: 15px;
	font-family: serif, "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;
	position: relative;
	margin: 0 0  20px 0;
	padding: 0 0 0 42px;
	letter-spacing: .1rem;
	display: inline-block;
	background-image: url(../images/icon_leaf2.svg);
	background-repeat: no-repeat;
	background-position: left center;
}

.tx_greenTape {
	color: #FFF;
	background-color: #00693E;
	text-align: center;
	width: 80%;
	max-width: 200px;
	padding: 10px 0;
	transform: rotate(-4deg);
	-moz-transform: rotate(-4deg);
	-webkit-transform: rotate(-4deg);
	-o-transform: rotate(-4deg);
	-ms-transform: rotate(-4deg);
	font-weight: 600;
	margin: 0 auto 22px;
	font-size: 1.4rem;
}

.img_prof_spc {
	transform: rotate(-2deg);
	-moz-transform: rotate(-2deg);
	-webkit-transform: rotate(-2deg);
	-o-transform: rotate(-2deg);
	-ms-transform: rotate(-2deg);
	display: block;
	position: relative;
	max-width: 210px;
	width: 65%;
	margin: 0 auto 40px;
}

.img_spc_prof {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	letter-spacing: .1rem;
	padding-top: 9px;
}

.img_prof1 {
	width: 100%;
}

.img_prof_spc::before {
	right: -30px;
	top: -30px;
	content:'';
	width: 70px;
	height: 70px;
	position: absolute;
	display: block;
	background-image: url(../images/bg_img_tape.svg);
	background-repeat: no-repeat;
}

.img_prof_spc::after {
	left: -30px;
	bottom: -30px;
	content:'';
	width: 70px;
	height: 70px;
	position: absolute;
	display: block;
	background-image: url(../images/bg_img_tape.svg);
	background-repeat: no-repeat;
}

.tx_spc_prof {
	background-image: url(../images/bg_noteLine.svg);
	padding: 10px 4px 15px;
	display: inline-block;
	vertical-align: top;
	width: 100%;
	letter-spacing: .1rem;
	text-align: left;
	max-width: 630px;
}

.h5_prof {
	display: inline-block;
	font-size: 1.7rem;
	color: #00693E;
	margin-bottom: 7px;
	padding: 0 5px;
	letter-spacing: .2rem;
	line-height: 1.4;
}

.ls10 {
	letter-spacing: 1rem;
	text-indent: .5rem;
}

.greenMarker1 {
	background: linear-gradient(transparent 60%, #bfcab9 60%);
}

.tx_prof {
	color: #273a1f;
	font-size: 1.2rem;
	margin-bottom: 24px;
	padding-left: 5px;
}




/* campaign
-------------------------------------------------------------- */


.atcl_campaign1 {
	padding: 30px 10px 35px;
	background-color: #FFF;
}

.box_green1 {
	border: 2px solid #00693E;
	background-image: url(../images/bg_sheet.jpg);
	max-width: 1280px;
	margin: 0 auto;
}

.camp1_hdr {
	height: 194px;
	background-image: url(../images/bg_img_camp1_hdr.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 18px;
}

.h5_spc_camp1 {
	text-align: center;
	margin-bottom: 17px;
}

.h5_camp1 {
	font-size: 2.1rem;
	color: #00693E;
	line-height: 1.4;
	background: linear-gradient(transparent 60%, #bfcab9 60%);
	display: inline;
	padding: 0 2px 1px;
}

.h6_camp1 {
	font-size: 1.5rem;
	color: #00693E;
	margin-bottom: 19px;
}

.tx1_camp1 {
	color: #273a1f;
	font-size: 1.4rem;
	margin-bottom: 18px;
	line-height: 1.7;
}

.tx1_camp2 {
	color: #273a1f;
	font-size: 1.2rem;
	margin-bottom: 18px;
	line-height: 1.7;
}

.box_green1_wrap {
	padding: 0 10px 20px;
	max-width: 816px;
	margin: 0 auto;
}






/* dishes
-------------------------------------------------------------- */

.atcl_dishes {
	padding: 35px 10px 27px 10px;
	background-color: #FFF;
}

.atcl_dishes_wrap {
	background-color: #807139;
	max-width: 1080px;
	margin: 0 auto;
}


.green-box1_spc {
	background-image: url(../images/bg_greenbox1_sp.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 40px 10px 20px 10px;
}

.green_box1 {
	position: relative;
	background-color: rgba(104,128,54,.9);
	color: #FFF;
	padding: 45px 15px;
	max-width: 640px;
	margin: 0 auto;
}

.green_box1::before {
	content: '';
	width: 210px;
	height: 12px;
	position: absolute;
	background: url(../images/grenn_box_1top.svg) no-repeat;
	background-position: center center;
	right: 0;
	left: 0;
	top: 14px;
	margin: 0 auto;
}

.green_box1::after {
	content: '';
	width: 210px;
	height: 12px;
	position: absolute;
	background: url(../images/grenn_box_1bottom.svg) no-repeat;
	background-position: center center;
	right: 0;
	left: 0;
	bottom: 14px;
	margin: 0 auto;
}

.h5_dishes {
	font-size: 1.6rem;
	text-align: center;
	margin-bottom: 18px;
	font-weight: 600;
}

.tx1_dishes {
	font-size: 1.2rem;
	line-height: 1.9;
	text-align: justify;
	text-justify: inter-ideograph;
}

.dish_photo_spc {
	padding: 10px 10px 8px 10px;
	font-size: 0;
	letter-spacing: 0;
	text-align: center;
}

.fig_photo_dishes {
	vertical-align: top;
	display: inline-block;
	margin-bottom: 8px;
	position: relative;
	width: 100%;
}

.fig_photo_dishes::after {
	content: '';
	position: absolute;
	right: 3px;
	bottom: 3px;
	background: url(../images/icon_loupe2.svg) no-repeat;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.img_photo_dishes {
	width :100%;
}




/* catering
-------------------------------------------------------------- */

.atcl_catering {
	background-color: #FFF;
	padding-top: 22px;
}

.catering_start {
	background-image: url(../images/bg_img_catering.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 37px 10px;
	text-align: center;
	overflow: hidden;
}

.black_box1 {
	background-color: rgba(13,13,13,.8);
	color: #FFF;
	padding: 37px 16px 1px;
	max-width: 780px;
	margin: 0 auto;
	font-size: 0;
	letter-spacing: 0;
}

.cateringL {
	display: inline-block;
	width: 100%;
	vertical-align: top;
	text-align: justify;
	text-justify: inter-ideograph;
	margin-bottom: 10px;
}

.h4_catering {
	font-size: 2.6rem;
	text-align: center;
	margin-bottom: 24px;
	letter-spacing: .2rem;
}

.tx1_catering {
	font-size: 1.2rem;
	margin-bottom: 12px;
}

.cateringR {
	display: inline-block;
	width: 100%;
	vertical-align: top;
	text-align: center;
	margin-bottom: 28px;
}

.img_catering {
	line-height: 0;
	width: 46%;
	margin: 3px;
	max-width: 190px;
}


.white_box1 {
	border: 1px solid #FFF;
	margin-bottom: 25px;
}

.h4_white_box {
	background-color: rgba(255,255,255,.2);
	font-size: 1.4rem;
	padding: 8px 0;
	line-height: 1.2;
}

.box_inner1 {
	text-align: left;
	padding: 16px 8px;
}

.ilb_half_PC {
	display: inline-block;
	width: 100%;
	vertical-align: top;
}

.pdL8 {
	padding-left: 8px;
}






/* gallery
-------------------------------------------------------------- */

.atcl_gallery {
	background-color: #0D0D0D;
	padding: 112px 0 7px;
}

.gallery_wrap {
	max-width: 1080px;
	margin: 0 auto;
}

.gallery_hdr {
	position: relative;
	height: 273px;
	background-image: url(../images/bg_img_gallery.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding-top: 12px;
}

.wrap4 {
	max-width: 1280px;
	margin: 0 auto;
	text-align: center;
	padding-left: 10px;
	position: absolute;
	top: -42px;
	right: 0;
	left: 0;
	margin: 0 auto;
}

.title_bk_spc {
	padding: 0;
	width: 65%;
	max-width: 282px;
	display: inline-block;
	position: relative;
	margin-bottom: -20px;
}

.h3_bk {
	display: inline-block;
	background-image: url(../images/icon_leaf3.svg);
	background-repeat: no-repeat;
	background-position: left center;
	line-height: 1.2;
	font-family: serif, "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;
	font-size: 2.3rem;
	color: #FFF;
	padding-left: 42px;
	letter-spacing: .3rem;
}

.main_gallery {
	background-color: #0D0D0D;
	padding-bottom: 1px;
}

.wrap5 {
	padding: 23px 0 0 0;
	max-width: 1004px;
	margin: 0 auto;
	font-size: 0;
	letter-spacing: 0;
	overflow: hidden;
}

.wrap6 {
	padding: 0 12px 0;
}

.wrap7 {
	padding: 23px 12px 0;
	margin: 0 auto;
	max-width: 740px;
}

.graybox1 {
	background-color: #292d2a;
}

.fig_floormap {
	width: 100%;
	margin-bottom: 25px;
}



.img_gal_sampes_spc {
	font-size: 0;
	letter-spacing: 0;
	line-height: 1;
	text-align: center;
	margin-bottom: 5px;
}

.img_gal_sampes_blk {
	display: inline-block;
	vertical-align: top;
	width: 33.3%;
	padding: 3px;
}

.img_gal_sampes_blk img{
	width: 100%;
}

.gallery_hdr2 {
	height: 146px;
	background-image: url(../images/img_gal0.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}


.h5_gallery {
	font-size: 1.4rem;
	color: #FFF;
	margin-bottom: 17px;
}

.tx1_gallery {
	font-size: 1.3rem;
	color: #ABB9AD;
	margin-bottom: 26px;
}

.graybox1 {
	color: #FFF;
}

.bt_nextOpen1 {
	font-size: 1.4rem;
	text-align: center;
	padding: 10px 0;
	background-image: url(../images/icon_arrowD3.svg);
	background-position: right 5px center;
	background-repeat: no-repeat;
	cursol: pointer;
}

.bt_nextOpen1:hover {
	opacity: .8;
}

.bt_nextOpen1_oepn {
	background-image: url(../images/icon_arrowU3.svg);
}

.nextDetail1 {
	border-top: 1px solid #FFF;
	padding: 28px 10px 14px;
	display: none;
}

.title_bdL2 {
	border-left: 3px solid #9EACA0;
	padding: 4px 8px 2px;
	margin-bottom: 8px;
	letter-spacing: .2rem;
	font-size: 1.4rem;
	font-weight: 600;
}

.table_fmt1 {
	font-size: 1.4rem;
	width: 100%;
	margin-bottom: 28px;
}

.table_fmt1_title {
	padding: 4px 0;
}

.table_fmt1_price {
	text-align: right;
}


.greenbox1 {
	border: 5px solid #00693E;
	color: #FFF;
	margin-bottom: 28px;
}

.greenbox1_title {
	background-color: #00693E;
	padding: 10px 12px;
	font-size: 1.5rem;
}

.greenbox1_main {
	padding: 10px 8px;
}

.greenbox_tx {
	margin-bottom: 18px;
	/*word-break: break-all;*/
}



.bt_green1, .bt_green1:visited {
	margin-bottom: 40px;
	background-color: #00693E;
	padding: 15px 0 8px 45px;
	background-repeat: no-repeat;
	color: #FFF;
	font-size: 1.3rem;
	display: block;
	min-height: 50px;
	text-align: center;
}

.bt_green1:hover {
	opacity: .8;
}

.bt_green1[bt_iconL="pdf"] {
	background-image: url(../images/icon_pdf.svg);
	background-position: left 7px center;
}
	
.bt_spc1_tx {
	font-size: 1.6rem;
	margin-bottom: 19px;
	color: #FFF;
}






.bt_pd1 {
	border-bottom: 1px solid #FFF;
	background-image: url(../images/icon_arrowD2.svg);
	background-repeat: no-repeat;
	background-position: right 4px center;
	font-size: 1.4rem;
	padding: 6px;
	color: #FFF;
	margin-bottom: 22px;
	cursor: pointer;
}

.bt_pd1_open {
	background-image: url(../images/icon_arrowU2.svg);
}

.pd_detail {
	display: none;
	padding: 0 8px;
	margin-bottom: 25px;
}

.ricas_table1 {
	font-size: 1.2rem;
	color: #FFF;
	width: 100%;
}

.table_td_menu {
	
}

.table_td_price {
	text-align: right;
	width: 77px;
}

.contact_lead1 {
	font-size: 1.4rem;
	color: #FFF;
	margin-bottom: 18px;
}


/* access
-------------------------------------------------------------- */



.atcl_access {
	padding: 41px 0 20px;
	background-color: #FFF;
}

.wrap2 {
	max-width: 1280px;
	margin: 0 auto;
	text-align: center;
}

.title_green_spc {
	background-color: #00693E;
	padding: 22px 0;
	width: 75%;
	max-width: 282px;
	display: inline-block;
	position: relative;
	text-align: center;
	margin-bottom: -20px;
}

.title_green_spc_acc {
	margin-bottom: 16px;
}

.title_green_spc::before {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 74%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 12px 0 0;
	border-color: #00693E transparent transparent transparent;
}

.h3_green2 {
	display: inline-block;
	background-image: url(../images/icon_leaf2.svg);
	background-repeat: no-repeat;
	background-position: left center;
	line-height: 1.2;
	font-family: serif, "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;
	font-size: 1.8rem;
	color: #FFF;
	padding-left: 42px;
	margin-left: -17px;
	letter-spacing: .3rem;
}

.if_googleMap {
	width: 100% !important;
	height: 310px !important;
	margin-bottom: 20px !important;
}

.wrap3 {
	max-width: 820px;
	margin: 0 auto 40px;
	font-size: 0;
	letter-spacing: 0;
}

.wrap_half64_A {
	display: inline-block;
	vertical-align: top;
	letter-spacing: .1rem;
	width: 100%;
	padding: 0 10px;
}

.wrap_half64_B {
	display: none;
	margin-top: 45px;
	vertical-align: top;
	letter-spacing: .1rem;
	width: 100%;
	padding: 0 10px;
}

.wrap_half64_B_open {
	vertical-align: top;
	letter-spacing: .1rem;
	width: 100%;
	padding: 0 10px;
}

.contact_lead2 {
	font-size: 1.4rem;
	color: #595959;
	margin-bottom: 18px;
}

.h5_access {
	font-size: 2.1rem;
	color: #00693E;
}

.tx1_access {
	font-size: 1.2rem;
	color: #595959;
	margin-bottom: 12px;
}


.bdL_green1 {
	color: #00693E;
	font-size: 1.6rem;
	border-left: 2px solid #00693E;
	padding: 13px 0 13px 8px;
	line-height: 1.2rem;
	margin-bottom: 8px;
}





/* footer
-------------------------------------------------------------- */

.fixedBottom {
	position: fixed;
	width: 100%;
	bottom: 0;
	z-index: 100;
	text-align: center;
	background-color: rgba(76,128,128,.8);
	color: #FFF;
	padding-bottom: env(safe-area-inset-bottom);
	display: none;
}

.fixedBottom_inner {
	position: relative;
}

.bt_fixedBottom {
	display: inline-block;
	margin: 0 auto;
	background-image: url(../images/icon_phone1.svg);
	background-repeat: no-repeat;
	background-position: left center;
	padding: 10px 5px 7px 30px;
}

.tx1_fixedBottom {
	font-size: 1rem;
	margin-bottom: 3spx;
	line-height: 1.2;
}

.tx2_fixedBottom, .tx2_fixedBottom:visited {
	font-size: 1.4rem;
	line-height: 1.2;
	color: #FFF;
}

.bt_close_bottom {
	background-image: url(../images/bt_close2.svg);
	background-repeat:no-repeat;
	background-position: center center;
	width: 28px;
	height: 28px;
	position: absolute;
	top: 0;
	right: 0;
	text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
	cursor: pointer;
}

.fixedBottom_closed {
	display: none !important;
}

.bt_scrollTop {
	width: 36px;
	height: 36px;
	background-image: url(../images/bt_scrollTop.svg);
	background-repeat: no-repeat;
	position: fixed;
	bottom: 90px;
	right: 0;
	z-index: 100;
	display: none;
}

.ft {
	text-align: center;
	padding: 0 0 20px;
}

.title_ft {
	height: 50px;
	background-color: #FFF;
}

.ft_wrap {
	padding: 48px 10px 0;
}

.bt_spc1 {
	max-width: 364px;
	margin: 0 auto 50px;
	text-align: center;
}

.bt_blue1, .bt_blue1:visited {
	display: block;
	padding: 15px 0;
	color: #FFF;
	font-size: 1.3rem;
	background-color: #4C8080;
	margin-bottom: 8px;
	line-height: 1.2;
	background-repeat: no-repeat;
	background-position: left 8px center;
}

.bt_blue1:hover {
	opacity: .8;
}

.bt_tel {
	letter-spacing: .1rem;
	background-image: url(../images/icon_phone1.svg);
}

.bt_mail {
	letter-spacing: 0;
	background-image: url(../images/icon_mail1.svg);
}


.btSnsBtm_spc {
	text-align: center;
	margin-bottom: 40px;
	font-size: 0;
	letter-spacing: 0;
}

.a_btSnsBtm {
	display: inline-block;
	vertical-align: top;
	width: 44px;
	line-height: 0;
	margin: 0 4px;
}

.btSnsBtm {	
	width: 100%;
}

.btSnsBtm:hover {
	opacity: .8;
}



.logo_ft {
	width: 210px;
}



.address_ft {
	color: #B6B880;
	padding-bottom: env(safe-area-inset-bottom);
	font-size: 1.1rem;
}

.bg_paralax2 {
	position: fixed;
	width: 100%;
	height: 100%;
	background-image: url(../images/bg_img_footer.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: -2;
	background-color: blue;
	display: none;
}