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

@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&display=swap');


/* =================================== */
/*	Basic Style 
/* =================================== */
body {
	 font-family: "Noto Sans Japanese", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
	font-size: 1em;
	line-height: 1.6;
    color: #020202;
}
div{box-sizing: border-box;}

a:link { 
	color: #333; 
	text-decoration: none;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
}
a:visited { color: #333;}
a:hover { color: #f98700; text-decoration: none;}

figure, p, address {　margin: 0; padding: 0; box-sizing: border-box;}
p {
    margin-block-start: 0.5em;
    margin-block-end: 0.75em;
}
h1,h2,h3,h4,h5,h6,dl,dt,dd,div,figure { padding: 0; margin: 0; box-sizing: border-box;}
img{ max-width: 100%; box-sizing: border-box; padding: 0; margin: 0;}
iframe {　border: 0; box-sizing: border-box;}
ul,ol { list-style: none; padding: 0; margin: 0; box-sizing: border-box;}
li{ vertical-align: top; box-sizing: border-box;}

.align_c{ text-align: center;}
.mincho{ font-family: 'Noto Serif JP', serif; font-weight: 400;}
.eng{font-family: Arial, Helvetica, "sans-serif"; font-weight: 700;}


/* --------------------------------------------------------------- 
■ header
-----------------------------------------------------------------*/
/* PC */
@media screen and (min-width: 769px) {
	header{
		background-color: rgb(255, 255, 255, 0.9);
		box-shadow: 0 0 4px rgba(0,0,0,0.2);
		padding: 0;
		margin: 0;
		width: 100%;
		z-index: 1;
		position: fixed;
		top: 0;
	}
	header>.inner{
		margin: 0 auto;
		min-width: 769px;
		width: 90%;
		height: 70px;
		position: relative;
		z-index: 10;
	}
	header a{
		color: #333;
	}
	header a:hover{
		color: #f98700;
	}
	header .logoarea{
		position: absolute;
		padding: 0;
		top: 5px;
		left: 0;
		width: 240px;
	}
	header .logoarea h1{
		padding:0;
		margin: 0;
	}
	header .logoarea img{
		max-height: 55px;
		max-width: 240px;
	}
	header #navi_pc{
		position: absolute;
		width : 70% ; /* IE8以下とAndroid4.3以下用フォールバック */
		width : -webkit-calc(100% - 260px) ;
		width : calc(100% - 260px) ;	
		text-align: right;
		top: 50%; /*親要素を起点に上から50%*/
		right: 0;
	  transform: translateY(-50%) ; /*要素の大きさの半分ずつを戻す*/
	  -webkit-transform: translateY(-50%) ;
	}
	header #navi_sp{
		display: none;
	}
	header #navi_pc nav ul{
		text-align: right;
	}
	header #navi_pc nav ul.contact{
		display: none;
	}
	header #navi_pc nav ul > li{
		display: inline-block;
		width: 120px;
		box-sizing: border-box;
		position: relative;
		text-align: center;
		padding: 1em 0.5em;
	}
	header #navi_pc nav ul > li.rsv {
		margin-left: 20px;
		margin-top: 1px;
	}
	header #navi_pc nav ul > li.rsv a {
		background: #f98700;
		color: #fff;
		padding: 9px 19px;
	}
	/* プルダウン */
	header nav > li.menu__single {
	}

	header nav li.menu__single ol.menu__second-level {
		padding:0;
		margin: 0;
		list-style: none;
		position: absolute;
		top: 50px;
		left: -40px;
		right: 0;
		width: 220px;
		background-color: rgb(240, 130, 0, 0.9);
		z-index: 2;
		font-size: 0.9rem;
		line-height: 1.4;
	}

	header nav li.menu__single:hover ol.menu__second-level {
		visibility: visible;
		opacity: 1;
	}	
	ol.menu__second-level {
		visibility: hidden;
		opacity: 0;
		z-index: 1;
	}
	ol.menu__second-level li {
		border-top: 1px solid #a05700;
		margin: 0;
		padding: 0;
		/*border-top: 1px solid #111;*/
		text-align: left;
		vertical-align: top;
	}
	ol.menu__second-level li:first-of-type {
		border-top: 0;
	}
	ol.menu__second-level li a {
		display: block;
		padding: 8px 0.75em;
		color: #fff;
		font-size: 1rem;
		line-height: 1.4;
	}
	ol.menu__second-level li a:hover {
		color: #fff;
	}
	
}


/* SP navication */
@media screen and (max-width: 768px) {
	header{
		background-color: #fff;
		height: 60px;
		position: relative;
		z-index: 1;
	}
	header .logoarea{
		position: absolute;
		height: 50px;
		top: 10px;
		left: 20px;
	}
	header .logoarea img{
		max-height: 40px;
	}
	header #navi_pc{
		display: none;
	}
	.overlay {
	  content: "";
	  display: block;
	  width: 0;
	  height: 0;
	  background-color: rgba(0, 0, 0, 0.5);
	  position: absolute;
	  top: 0;
	  left: 0;
	  z-index: 3;
	  opacity: 0;
	  transition: opacity .5s;
	}
	.overlay.open {
	  width: 100%;
	  opacity: 1;
		height: 100vh;
	}
	main {
	  height: 100%;
	  min-height: 100vh;
	  padding: 0;
	  transition: all .5s;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	}
	main.open {
	  transform: translateX(-90%);
	}
	.menu-trigger {
	  display: inline-block;
	  width: 32px;
	  height: 28px;
	  vertical-align: middle;
	  cursor: pointer;
	  position: fixed;
	  top: 18px;
	  right: 20px;
	  z-index: 100;
	   transform: translateX(0);
	  transition: transform .5s;
	 }
	 .menu-trigger.active {
	  transform: translateX(0);
	}
	 .menu-trigger span {
	  display: inline-block;
	  box-sizing: border-box;
	  position: absolute;
	  left: 0;
	  width: 100%;
	  height: 4px;
	  background-color: #333;
	  transition: all .5s;
	}
	.menu-trigger.active span {
	  background-color: #fff;
	}
	.menu-trigger span:nth-of-type(1) {
	  top: 0;
	}
	.menu-trigger.active span:nth-of-type(1) {
	  transform: translateY(12px) rotate(-45deg);
	}
	.menu-trigger span:nth-of-type(2) {
	  top: 12px;
	}
	.menu-trigger.active span:nth-of-type(2) {
	  opacity: 0;
	}
	.menu-trigger span:nth-of-type(3) {
	  bottom: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
	  transform: translateY(-12px) rotate(45deg);
	}
	nav {
	  width: 80%;
	  height: 100%;
	  padding-top: 70px;
	  background-color: rgb(0, 0, 0, 0.9);
	  position: fixed;
	  top: 0;
	  right: 0;
	  transform: translate(100%);
	  transition: all .5s;
	  z-index: 10;
	}
	nav.open {
	  transform: translateZ(0);
	}
	nav li {
	  color: #fff;
	  text-align: left;
	}
	nav >  ul > li {
	  padding: 10px 2em;
	}
	nav li a:link,nav li a:visited{
	  color: #fff;
	}
	
	nav ol {
		padding: 0;
		margin: 0 0 0 1.5em;
	}
	nav ol li {
		list-style: none;
	  padding: 5px 0;
	}
	nav ol li:before {
		content:'- ';
	}
	
}

/* --------------------------------------------------------------- 
■ footer
-----------------------------------------------------------------*/
/* PC */
footer{
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
footer .banners{
	padding: 30px 0 20px 0;
}
footer .banners ul{
	margin: 0;
	padding: 0;
	vertical-align: top;
}
footer .banners ul li{
	width: 33%;
	display: inline-block;
	box-sizing: border-box;
	text-align: center;
	padding: 4px;
	font-size: 14px;
	line-height: 24px;

}
@media screen and (max-width: 768px) {
	footer .banners{
		padding: 15px 0 15px 0;
	}
	footer .banners ul li{
		width: 49%;
		padding: 5px;
	}
}
	
footer .logoarea{
	padding: 0 0 20px 0;
}
footer .logoarea ul{
	margin: 0;
	padding: 0;
	vertical-align: top;
}
footer .logoarea ul li{
	width: 33%;
	display: inline-block;
	box-sizing: border-box;
	text-align: center;
	padding: 4px;
	font-size: 14px;
	line-height: 24px;
}
@media screen and (max-width: 768px) {
	footer .logoarea{
		padding: 0;
	}
	footer .logoarea ul li{
		width: 49%;
		padding: 5px;
	}
}
footer .copyright{
	color:#fff;
	padding: 20px 2%;
	min-height: 70px;
	margin: 0 auto;
	text-align: center;
	font-size: 14px;
	background-color: #333;
}
footer .copyright copy{
	padding: 0;
	margin: 0;
}
@media screen and (min-width: 769px) {/* PC */	
	.sp_contact_btn{ display: none}
}
@media screen and (max-width: 768px) {
	.sp_contact_btn{
		position: fixed;
		z-index: 1;
		bottom: 10px;
		left: 10px;
		color: #000;
		padding: 0.75em 1em ;
		box-sizing: border-box;
		background-color:rgba(249,135,0,0.8);
		border-radius: 4px;
		font-family: Arial, Helvetica, "sans-serif";
		font-weight: 700;
		font-size: 1.3rem;
		line-height: 1.4;
		letter-spacing: 1px;
	}
		.sp_contact_btn::before {
		content:'\f2a0';
		font-family:'Font Awesome 5 Free';
		font-weight:900;
		color: #fff;
	}
		.sp_contact_btn a {
		color: #fff;
	}
}


/* =================================== */
/*	layout
/* =================================== */
.inner_wid{
	width: 1000px;
	margin: 0 auto;
}
.cotent_block{
	max-width: 900px;
	margin-bottom: 80px;
	margin-left: auto;
	margin-right: auto;
}
#colum_container{
	width: 1000px;
	margin: 0 auto 40px auto;
}
.leftbox{
	float: left;
	width: 75%;
	min-height: 400px;
	margin: 0 auto;
}
.rightbox{
	float: right;
	width: 22%;
	margin: 0 auto;
}
@media screen and (max-width: 999px) {/* tablet and sp */
	.inner_wid{
		width: 94%;
		margin: 0 auto;
	}
	.cotent_block{
		margin-bottom: 40px;
	}
	#colum_container{
		width: 94%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 768px) {
	.inner_wid{
		width: 90%;
		margin: 0 auto;
	}
	.cotent_block{
		margin-bottom: 40px;
	}
	.leftbox{
		width: 94%;
		float: none;
	}
	.rightbox{
		width: 94%;
		float: none;
		text-align: center;
		margin-bottom: 20px;
	}
}


.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.center{ margin-left: auto; margin-right: auto;}
.relative{ position: relative; }

.mt5{ margin-top: 5px; }
.mt10{ margin-top: 10px; }
.mt20{ margin-top: 20px; }
.mt30{ margin-top: 30px; }
.mt40{ margin-top: 40px; }
.mt50{ margin-top: 50px; }

.mb10{ margin-bottom: 10px; }
.mb20{ margin-bottom: 20px; }
.mb30{ margin-bottom: 30px; }
.mb40{ margin-bottom: 40px; }
.mb50{ margin-bottom: 50px; }

.bold{ font-weight: bold; }
.center{ text-align: center;}
.txt120{ font-size:1.2em;}
.txt_s{ font-size:90%;}
.color{ color:#f98700;}
.orange{ color:#f98700;}
.pink{ color:#e490b0;}
.red{ color:#ff6666;}

.marker {
	background:linear-gradient(transparent 75%, #ffdc00 75%);
	font-weight:bold; 
}

/*  背景色  */
.bg_gray{background-color: #f9f8f0;}
.bg_white{ background-color: #fff; }
.bg_dot{ background: repeat url("../images/common/bg_dot.png"); }


/*pagetop*/
#pagetop {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 70px;
	height: 70px;
	font-size: 0; line-height: 0;
}
@media screen and (max-width: 768px) { /* SP */
	/*pagetop*/
	#pagetop {
		width: 40px;
		height: 40px;
		bottom: 20px;
	}
}
table.tbl1{
	margin: 0;
	padding: 0;
	border: 1px solid #bbb;
	border-right: 0 solid #bbb;
	border-bottom: 0 solid #bbb;
	box-sizing: border-box;
}
table.tbl1 th,
table.tbl1 td{
	margin: 0;
	padding: 10px 1em;
	border-right: 1px solid #bbb;
	border-bottom: 1px solid #bbb;
	vertical-align: top;
	box-sizing: border-box;
}
table.tbl1 th{
	text-align: center;
}
table.tbl1 td ul{
	padding: 0;
	margin: 0;
	list-style: disc;
	margin-left: 1em;
}
table.tbl1 td ul li{
	padding: 0;
	margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) { /* SP */
	table.tbl1 th,
	table.tbl1 td{
		padding: 6px 6px;
		line-height: 1.4rem;
	}
}


/* =================================== */
/*	title
/* =================================== */
h2.h2_title{
	padding: 12px 14px;
	margin-bottom: 20px;
	font-size: 22px;
	line-height: 34px;
	font-weight: bold;
	color: #333;
	vertical-align: middle;
	text-align: left;
	background-image:url("../images/common/bg_dot.png");
	background-repeat:repeat;
	background-size:auto;
	border-bottom: 2px solid #333;
}
.title_sub{
	margin-bottom: 20px;
	padding: 5px 0;
	font-size: 20px;
	line-height: 32px;
	border-bottom: 1px solid #333;
	color: #333;
}
@media screen and (max-width: 768px) { /* SP */
	h2.h2_title{
		font-size: 1.3rem;
		line-height: 1.5em;
	}
	.title_sub{
		font-size: 1.1rem;
		line-height: 1.5em;
	}
}




@media screen and (min-width:768px) { 	/* PC */
	/* PCのみ表示 */
	.sp_only{ display: none;} 
	.pc_only{ display: block;}
	
	a img{
		transition : all 0.3s ease 0s;
	}
	a:hover img{
	  opacity: 0.85;
	  filter: alpha(opacity=85);
	  -ms-filter: "alpha(opacity=85)";
	}
	.imgR{ 
		float: right;
		width: 35%;
		margin-bottom: 10px;
		margin-left: 20px;
		box-sizing: border-box;
	}
	.imgL{ 
		float: left;
		width: 35%;
		margin-bottom: 10px;
		margin-right: 20px;
		box-sizing: border-box;
	}
	.imgR_Ltext{
		width : 65% ; /* IE8以下とAndroid4.3以下用フォールバック */
		width : -webkit-calc(100% - 35% ) ;
		width : calc(100% - 35%) ;	
		float: left;
		text-align: left;
	}
	.imgL_Rtext{
		width : 65% ; /* IE8以下とAndroid4.3以下用フォールバック */
		width : -webkit-calc(100% - 35%) ;
		width : calc(100% - 35%) ;
		float: right;
		text-align: left;
	}
	
	.imgR_wide{ 
		float: right;
		width: 44%;
		margin-left: 20px;
		margin-bottom: 10px;
		box-sizing: border-box;
	}
	.imgL_wide{ 
		float: left;
		width: 44%;
		margin-bottom: 10px;
		box-sizing: border-box;
	}
	.imgL_wide_Rtext{
		width : 55% ; /* IE8以下とAndroid4.3以下用フォールバック */
		width : -webkit-calc(100% - 44% ) ;
		width : calc(100% -  44%) ;
		float: right;
		text-align: left;
	}
	.imgR_wide_Ltext{
		width : 55% ; /* IE8以下とAndroid4.3以下用フォールバック */
		width : -webkit-calc(100% - 44%) ;
		width : calc(100% - 44%) ;
		float: left;
		text-align: left;
	}

	.img_center_wide{ 
		max-width: 100%;
		box-sizing: border-box;
	}
}

@media screen and (max-width: 767px) { /* SP */
	/* SPのみ表示 */
	.sp_only{ display: block;}
	.pc_only{ display: none;}
		
	.imgR{ 
		float: right;
		width: 40%;
		margin-left: 10px;
		margin-bottom: 10px;
	}
	.imgL{ 
		float: left;
		width: 40%;
		margin-right: 10px;
		margin-bottom: 10px;
	}
	
	.imgR_wide{
		float: none;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.imgL_wide{
		float: none;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.img_center_wide{ 
		max-width: 100%;
	}
}

/* =================================== */
/*	ボタン
/* =================================== */
.btn{ margin: 0 auto; }
.btn.btn_center{ text-align: center;}
.btn_pd15{ padding:15px;}

/* btn-type01　*/
a.btn-type01 {
	display: inline-block;
	min-width: 140px;
	text-align: center;
	text-decoration: none;
	padding: 10px 2em 10px 2em;
	margin: 5px auto;
	transition: .2s;
	border: 1px solid #333;
	border-radius: 5px;
	position: relative;
	vertical-align: middle;
	font-size: 0.9rem;
	background-color: #fff;
}
a.btn-type01:link, 
a.btn-type01:visited{
	color: #6d563a;
}
a.btn-type01:hover {
	background-color: #6d563a;
	border-color: #6d563a;
	color: #fff !important;
}
/* 矢印 */
a.btn-type01::before,
a.btn-type01::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
a.btn-type01::after{
    right: 10px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #6d563a;
    border-right: 2px solid #6d563a;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
a.btn-type01:hover::after{
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
@media screen and (max-width: 768px) { /* SP */
	.btn  {
		text-align: center;
		 margin: 10px auto;
	}
	a.btn-type01 {
		min-width: 50%;
		margin-top: 10px;
	}
}
	
/* =================================== */

/*	TOPページ

/* =================================== */
#mainvisual{
	position: absolute;
	top: 0;
    margin: 0 auto 0 auto;
	padding: 0;
	width: 100%;
	height: 85vh;/* 1/3 mainvisualと直下コンテンツの高さ調整 absouteで詰まるのを調整 */
}
.mainvisual_under{
	margin-top: 85vh;/* 2/3 mainvisualと直下コンテンツの高さ調整 absouteで詰まるのを調整 */
}
#mainvisual .slider{
}
#mainvisual .slider div img.bg{
    width: 100%;
}
#mainvisual .slider div{
    padding: 0; 
    margin: 0 auto;
    width: 100%;
	position: relative;
}
#mainvisual .slider .slick-dots{
	position: absolute;
	bottom: -30px;
	left: 0;
}

/* 背景画像と上の文字の位置調整*/
/* 共通*/
#mainvisual div.slider div{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 85vh;/* 3/3 mainvisualと直下コンテンツの高さ調整 absouteで詰まるのを調整 */
}
#mainvisual div.slider div h2{
	position: absolute;
	width: 450px;
	text-align: center;
}
#mainvisual div.slider div h2 img{
	margin: 0 auto;
}

#mainvisual div.slider div.slide_00{
	background-image: url("../images/mv/mv_00.jpg");
}
#mainvisual div.slider div.slide_00 h2{
	top: 35%;
	left: 5%;
}
#mainvisual div.slider div.slide_01{
	background-image: url("../images/mv/mv_01.jpg");
}
#mainvisual div.slider div.slide_01 h2{
	top: 35%;
	left: 7%;
}
#mainvisual div.slider div.slide_02{
	background-image: url("../images/mv/mv_02.jpg");
}
#mainvisual div.slider div.slide_02 h2{
	top: 35%;
	right: 5%;
}
#mainvisual div.slider div.slide_03{
	background-image: url("../images/mv/mv_03.jpg");
}
#mainvisual div.slider div.slide_03 h2{
	top: 35%;
	right: 5%;
}
@media screen and (max-width: 960px) {
	#mainvisual{
		height: 60vh;/* 1/3 mainvisualと直下コンテンツの高さ調整 absouteで詰まるのを調整 */
	}
	.mainvisual_under{
		margin-top: 60vh;/* 2/3 mainvisualと直下コンテンツの高さ調整 absouteで詰まるのを調整 */
	}
	#mainvisual div.slider div{
		height: 60vh;/* 3/3 mainvisualと直下コンテンツの高さ調整 absouteで詰まるのを調整 */
	}
}
@media screen and (max-width: 640px) {
	#mainvisual div.slider div h2{
		width: 70%;
	}
	#mainvisual{
		height: 40vh;/* mainvisualと直下コンテンツの高さ調整 absouteで詰まるのを調整 */
		position: relative;
	}
	#mainvisual div.slider div{
		height: 40vh;/* mainvisualと直下コンテンツの高さ調整 absouteで詰まるのを調整 */
	}
	.mainvisual_under{
		margin-top: 30px;/* mainvisualと直下コンテンツの高さ調整 absouteで詰まるのを調整 */
	}
	#mainvisual div.slider div h2{
		background-color:rgba(255,255,255,0.7);
		width: 70%;
		margin: 0 auto;
		padding: 0
	}
	#mainvisual div.slider div h2 img{
		padding: 15px 0;
		margin: 0 auto;
		width: 85%;
	}
	#mainvisual div.slider div.slide_00 h2,
	#mainvisual div.slider div.slide_01 h2,
	#mainvisual div.slider div.slide_02 h2,
	#mainvisual div.slider div.slide_03 h2{
		top: 18%;
		left: 0;
		right: 0;
	}
}



/* =================================== */
/* news */
/* =================================== */
#news {
	padding: 35px 0 50px 0;
}
#news #top_topics {
	margin: 10px auto;
	width: 100%;
	max-width: 800px;
}
/* topics */
#news #top_topics .inner iframe{
	width: 100%;
	min-height: 180px;
	border: 1px solid #ddd;
	background-color: #fff;
}

#news #top_topics .inner dl{
	padding:  0 0 8px 0;
	margin: 0;
}
#news #top_topics .inner dl a:link,
#news #top_topics .inner dl a:visited{
	color: #202020;
}
#news #top_topics .inner dl a:hover {
	color: #f98700;
}
#news #top_topics .inner dl:after {
  content: "";
  clear: both;
  display: block;
}
#news #top_topics .inner dt,
#news #top_topics .inner dd{
	padding: 0;
	margin: 0;
}
#news #top_topics .inner .text a{
	color: #202020;
}
#news #top_topics .inner .text a:hover{
	color: #f98700;
}

@media screen and (max-width: 768px) {
	#news {
		padding: 0 0 30px 0;
	}
	#news .title_container h1{
		font-size: 1.1rem;
	}
	#news #top_topics {
		width: 100%;
		display: block;
		float: none;
	}
	#news #top_topics .inner{
		width: 100%;
	}
	#news .colm_2{
		width: 100%;
	}
	#news #sns.colm_2{
		float: none;
		padding-left: 0;
	}
}

.mainbanner{
	padding: 0 0 30px 0;
	margin: -30px auto 0 auto;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.mainbanner{
		width: 90%;
	}
}


.media {
	margin: 0 auto;
	padding: 30px 0;
}
.media ul li{
	width: 49%;
	display: inline-block;
	text-align: center;
	padding: 10px;
}
.media ul li img{
	border: 1px solid #ccc;
	padding: 10px;
}
@media screen and (max-width: 768px) {
	.media ul li{
		padding: 2px;
	}
	.media ul li img{
		padding: 0;
	}
}
.sticker dl{
	max-width: 800px;
	margin: 0 auto;
	
    display: flex;
    flex-flow: wrap;
    justify-content: space-around;
    align-items: center;
}
.sticker dl dt{
	text-align: center;
	width: 50%;
}
.sticker dl dd{
	width: 50%;
	font-size: 1.5rem;
	line-height: 1.5;
	color: #416797;
}
@media screen and (max-width: 768px) {
	.sticker dl dt{
		width: 100%;
	}
	.sticker dl dd{
		width: 100%;
		font-size: 1.1rem;
	}
}

#notice{
	margin: 40px auto;
}


/* =================================== */
/* トップ　診療案内 */
/* =================================== */
#medical {
	padding: 80px 0 80px 0;
}
#medical .inner dl {
	box-sizing: border-box;
	width: 30%;
	margin-left: 1%;
	margin-right: 1%;
	margin-bottom: 15px;
	padding: 0;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}
#medical .inner dl a{
	color: #020202;
}
#medical .inner dl a:hover{
	color: #999;
}
#medical .inner dl dt {
	padding: 0;
	margin: 0;
}
#medical .inner dl dt img {
	padding: 0;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
#medical .inner dl h3 {
	text-align:left;
	padding: 0 0 5px 0;
	font-size: 1.2em;
	line-height: 1.4;
}
#medical .inner dl dd p {
	text-align:left;
	padding:0;
	margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
	#medical {
		padding: 30px 0 0 0;
	}
	#medical .inner{
		width: 100%;
		margin: 0 auto;
		text-align: left;
	}
	#medical .inner dl {
		width: 49%;
		padding: 0 5px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
	}
	#medical .inner dl h3 {
		font-size: 1em;
	}
}
@media screen and (max-width: 640px) { /* only SP */
	#medical .inner dl {
		padding: 0 5px;
	}

}

/* =================================== */
/* 歯周病 */
/* =================================== */
#sisyu{
	min-height: 300px;
	background-image: url("../images/top/shisyu_bg.jpg") ;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#sisyu h1 {
	font-size: 1.6rem;
	line-height: 1.5;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-weight: bold;
}
#sisyu h1:before, #sisyu h1:after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #010101;
	display: block;
}
#sisyu h1:before {
	margin-right: .4em;
}
#sisyu h1:after {
	margin-left: .4em;
}

#sisyu .inner_wid{
	padding: 60px 0;
	position: relative;
	height: 440px;
}
#sisyu .inner{
	position: absolute;
	width: 500px;
	right: 0;
}
#sisyu .button{
	text-align: center;
}
#sisyu ul {
	margin-left: 3em;
	padding-left: 1em;
}
#sisyu ul li{
	font-size: 1.7rem;
	line-height: 1.5;
	padding: 0;
	margin: 0 0 15px 0;
	text-indent: -1.2em;
}
#sisyu ul li:before{
	content: '・';
}
/*
#sisyu ul li:before{
	content: '';
	display: inline-block;
	width: 34px;
	height: 34px;
	background-image: url("../images/top/icon_check.png");
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}*/
#sisyu ul li span{
	font-style: italic;
	color: #0e609f;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	#sisyu .inner_wid{
		padding: 30px 0;
		position: relative;
		height: auto;
	}
	#sisyu .inner{
		position: relative;
		width: 100%;
		padding: 15px 4%;
		background-color:rgba(255,255,255,0.9);
	}
	#sisyu h1 {
		font-size: 1.2rem;
	}
	#sisyu ul {
		margin-left: 0.5em;
	}
	#sisyu ul li{
		font-size: 1.1rem;
	}
	#sisyu ul li:before{
		width: 25px;/*画像の幅*/
		height: 25px;/*画像の高さ*/
	}
}

/* =================================== */
/* message */
/* =================================== */
#message{
	background-color: #ebebeb;
	background-image: url("../images/top/message_name.png");
	background-size: 500px auto;
	background-position: 80% 100px;
	background-repeat: no-repeat;
	padding: 50px 0 0 0;
	margin: 0 auto;
	width: 100%;
}
#message .inner_wid{
	position: relative;
	min-height: 500px;
}
#message .text{
	width: 60%;
	padding-bottom: 50px;
	position: absolute;
	left: 0;
}
#message .photo{
	padding: 0;
	margin: 0 auto;
	width: 35%;
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 1px;
	line-height: 0.1;
	vertical-align: baseline;
}
#message .photo img{
	width: 100%;
}

@media screen and (max-width: 768px) {
	#message{
		background-image: none;
	}
	#message .text{
		width: 70%;
	}
	#message .photo{
		width: 30%;
	}
}
@media screen and (max-width: 640px) {
	#message{
		background-image: none;
	}
	#message .button{
		text-align: center;
	}
	#message .text{
		width: 100%;
		position: relative;
		padding-bottom: 10px;
	}
	#message .photo{
		width: 40%;
		position: relative;
		text-align: center;
	}
}

/* =================================== */
/* contactarea */
/* =================================== */
#contactarea{
	background: #727b88 url("../images/common/contact_bg.jpg")  ;
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 45% auto;
	padding: 0;
	margin: 0;
	min-height: 200px;
	/* 上下左右真ん中 */
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
}
#contactarea img{
	margin-left: 100px;
}
@media screen and (max-width: 768px) {
	#contactarea{
		background-size: auto 100%;
		width: 100%;
		padding: 0;
		margin: 0 auto;
		min-height: 150px;
	}
	#contactarea .inner{
		width: 100%;
		margin: 0 auto;
		padding: 40px 3% 40px 3%;
		background-color:rgba(0,0,0,0.6);
		text-align: center;
		min-height: 150px;
	}
	#contactarea img{
		margin-left: auto;
		margin-right: auto;
		max-width: 50%;
	}
}
@media screen and (max-width: 640px) {
	#contactarea{
		min-height: 100px;
	}
	#contactarea .inner{
		padding: 30px 3% 20px 3%;
		min-height: 100px;
	}
	#contactarea img{
		max-width: 70%;
	}
}

/* =================================== */
/* information */
/* =================================== */
#information {
	background-color: #6d563a;
	color: #fff;
	width: 100%;
}
#information .inner {
    display: flex; /* 子要素をflexboxで揃える */
}
#information .right_box{
	padding: 40px 40px;
	width: 50%;
}
#information .left_box {
	width: 50%;
	background-image: url("../images/common/clinicinfo.jpg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
}
#information .right_box dl {
	margin-bottom: 15px;
}
#information .right_box dl a:link,
#information .right_box dl a:visited{
	color: #fff;
}
#information .right_box dl a:hover{
	color: #f98700;
}

@media screen and (max-width: 640px) { /* SP */
	#information .inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 1em;
	}
	#information .left_box,
	#information .right_box{
		display: block;
		margin: 0 auto;
		width: 100%;
	}
	#information .right_box{
		float: none;
		padding: 10px 3%;
	}
	#information .right_box dl {
		margin-bottom: 15px;
	}
	#information .left_box {
		float: none;
		height: 150px;
	}
}


.movie_container{
	display: inline-block;
	box-sizing: border-box;
	width: 49%;
	text-align: center;
	margin: 0 auto 40px auto;
}
.movie_container h3{
	width: 100%;
	background-color: #fff;
	color: #6d563a;
	border-radius: 5px;
	text-align: left;
	margin-bottom: 10px;
}
.movie_container h3 div{
	display: inline-block;
	box-sizing: border-box;
	background-color: #6d563a;
	color: #fff;
	padding: 8px 10px;
	margin-right: 1em;
	font-weight: normal;
	font-size: 1rem;
	line-height: 1.4;
}
.movie_container .video{
	height: 0;
	overflow: hidden;
	padding-bottom: calc(315 / 560 * 100%);
	position: relative;
}
.movie_container .video iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.map_container iframe{
	width: 100%;
	height: 350px;
	border: 0;
}

@media screen and (max-width: 640px) { /* SP */
	
	.movie_container{
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}
	.map_container iframe{
		height: 200px;
	}
}





/* =================================== */
/* 2階層　parking */
/* =================================== */
#parking{
	padding: 30px 0 0 0;
	background-color: #f4f0ec;
}
/* =================================== */
/* 2階層　access */
/* =================================== */
#access{
	padding: 30px 0 0 0;
	background-color: #f4f0ec;
}
@media screen and (max-width: 640px) { /* SP */
	#access{
		padding: 40px 0 0;
	}
	.movies .movie_container{
		margin-bottom: 20px;
	}
}



/* =================================== */
/* TOPようアクセス */
/* =================================== */
#accessarea{
	padding: 50px 0;
    background-color: #f4f0ec;
}
@media screen and (max-width: 640px) { /* SP */
	#accessarea{
	padding: 50px 0 30px;
}
}
.access-flex-box{
	max-width: 1000px;
	margin: 0 auto;
}
.access-flex-box .title_container{
	margin-bottom: 10px;
}
.access-flex-box .title_container h1{
	font-size: 1.4rem;
	text-align: left;
}
.accessmap{
	margin:50px auto 0;
}
.accessmap h1 {
	font-size: 1.4rem;
	text-align: center;
	margin-bottom: 10px;
}
@media screen and (max-width: 640px) { /* SP */
.accessmap h1 {
	text-align: left;
	margin-left: 5%;
}
}
.access-flex-box {
    display: flex;
    flex-flow: wrap;
    justify-content :space-between;
}
.access-flex-box .flex_item{
	background-color: none;
	box-sizing: border-box;
	width: 49%;
}
.access-flex-box #parking.flex_item{
}
.access-flex-box #access.flex_item{
}
.access-flex-box #parking{
	/*padding: 20px;*/
}
.access-flex-box #parking img{
	padding: 0;
}
.access-flex-box #access{
	/*padding: 20px;*/
}
#accessarea .movie_container{
	width: 100%;
	margin: 0 auto;
}
.access-flex-box .movies{
	padding: 0;
}
.map_area iframe{
	width: 100%;
	height: 350px;
	border: 0;
}
@media screen and (max-width: 640px) { /* SP */
	.access-flex-box .flex_item{
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
		.map_area iframe{
		height: 250px;
	}
	#accessarea .movie_container{
		margin-bottom: 40px;
	}
}









/* ===========

共通

=========== */
/* =================================== */
/* title_container */
/* =================================== */
.title_container{
	text-align: center;
	padding: 0;
	margin: 0 auto 20px auto;
}
.title_container h1{
	font-size: 1.8rem;
	line-height: 1.4;
	padding: 10px 0 0 0;
}
.title_container h2{
	font-size: 1rem;
	line-height: 1.4;
	font-weight: normal;
}
#medical .title_container.icon h1{
	margin-left: -20px;
}
#medical .title_container.icon h1:before{
	padding-right: 5px;
	content: '';
	display: inline-block;
	width: 38px;/*画像の幅*/
	height: 38px;/*画像の高さ*/
	background-image: url("../images/common/icn_teeth.svg");
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}
#parking .title_container.icon h1:before{
	content: '';
	display: inline-block;
	width: 38px;/*画像の幅*/
	height: 38px;/*画像の高さ*/
	background-image: url("../images/common/icn_parking.svg");
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: 4px;
}
#access .title_container.icon h1:before{
	content: '';
	display: inline-block;
	width: 38px;/*画像の幅*/
	height: 38px;/*画像の高さ*/
	background-image: url("../images/common/icn_walk.svg");
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}
#accessarea .title_container.icon h1:before{
	content: '';
	display: inline-block;
	width: 38px;/*画像の幅*/
	height: 38px;/*画像の高さ*/
	background-image: url("../images/common/icn_walk.svg");
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}

@media screen and (max-width: 768px) { /* SP */
	.title_container{
		width: 100%;
		margin: 0 auto 15px auto;
	}
	#feature .title_container  h1{
		font-size: 1.1rem;
	}
	.title_container.icon  h1{
		font-size: 1.5rem;
		line-height: 1.5rem;
	}
	#medical .title_container.icon h1:before,
	#parking .title_container.icon h1:before,
	#access .title_container.icon h1:before,
	#accessarea .title_container.icon h1:before{
		width: 30px;/*画像の幅*/
		height: 30px;/*画像の高さ*/
	}
}

/* =================================== */
/* layout */
/* =================================== */
.secondpage section{
	margin-bottom: 30px;
}
.secondpage section#information,
.secondpage section#parking,
.secondpage section#access{
	margin-bottom: 0;
}
@media screen and (max-width: 768px) { 
	.secondpage section{
		margin-bottom: 20px;
	}
}

.block{
	margin-bottom: 50px;
}
.block_inner{
	margin-bottom: 40px;
}
.block_inner:after{
  content: "";
  clear: both;
  display: block;
}
.block h2{
	margin-top: 10px;
	margin-bottom: 20px;
	padding: 14px 1em;
	background-color: #fcf2e7;
	color: #f98700;
	border-radius: 4px;
	font-size: 1.5rem;
	line-height: 1.5;
	letter-spacing: 1px;
}
.block:first-child h2{
	margin-top: 0;
}
.block h3{
	margin: 5px 0;
	padding: 0;
	font-size: 1.1rem;
	line-height: 1.5;
	width: 100%;
}
h3.mark{
	margin-bottom: 15px;
	text-align: left;
	border-bottom: 1px dotted #333;
	padding: 5px 0 5px 1em;
	font-weight: bold;
  position: relative;
}
h3.mark:before{
  display: block;
  content: '';
  position: absolute;
  top: .75em;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
h3.border{
	border-bottom: 1px solid #333;
	margin: 15px 0 20px 0;
	padding: 5px 0;
	font-size: 1.3rem;
	line-height: 1.5;
}
@media screen and (max-width: 768px) { /* SP */
	.block{
		margin-bottom: 40px;
	}
	.block:last-child{
		margin-bottom: 20px;
	}
	.block_inner{
		margin-bottom: 30px;
	}
	.block h2{
		margin-bottom: 10px;
		padding: 6px 0.5em;
		font-size: 1.3rem;
	}
	.block h3,
	h3.border{
		color: #333;
		font-size: 1rem;
		line-height: 1.5;
	}
	h3.border{
		font-size: 1.2rem;
	}
}

.bg_topbm{
	background-image:
		url("../images/common/bg_strip_2_top.png"),
		url("../images/common/bg_strip_1_bm.png");
	background-position: 
		150px -40px,
		left bottom;
	background-size: 
		100% auto,
		100% auto;
	background-repeat: 
		no-repeat,
		no-repeat;
}

.bg_top {
	background-image: url("../images/common/bg_strip_2_top.png");
	background-position: 200px -100px;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
.bg_bm {
	background-image: url("../images/common/bg_strip_1_bm.png");
	background-position: left bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
	.bg_top {
		background-position: 60px -20px;
		background-size: 120% auto;
	}
	.bg_bm {
		background-size: 140% auto;
	}
}

.bg_dot.info{
	padding: 8px;
}
.bg_dot.info .inner{
	padding: 20px 3% 10px 3%;
	background-color: #fff;
	font-size: 90%;
}

/* =================================== */
/* mainvisual_secondpage */
/* =================================== */
#mainvisual_secondpage{
	padding: 0;
	margin: 80px auto 40px auto;/* margin top はheaderと同じ高さ */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	/* 上下左右真ん中 */
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
	width: 100%;
}
#mainvisual_secondpage .inner{
	padding: 90px 0;
}
#mainvisual_secondpage h1{
	color: #fff;
	text-shadow: 0 0 8px rgba(0,0,0,0.7);
	font-weight: bold;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 3px;
}
@media screen and (max-width: 768px) { /* SP */
	#mainvisual_secondpage{
		margin: 0 auto 20px auto;
	}
	#mainvisual_secondpage .inner{
		padding: 50px 0;
	}
	#mainvisual_secondpage h1{
		font-size: 1.3rem;
		line-height: 1.8em;
	}
}
#mainvisual_secondpage.common{
	background-image: url("../images/common/title_bg.jpg") ;
}





/* ===========

クリニックページ

=========== */
.page_clinic .daytime table{
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0 auto 10px auto;
    border: 1px solid #bbb;
    border-bottom: 0;
    border-right: 0;
}
.page_clinic .daytime table td,
.page_clinic .daytime table th{
    border-bottom: 1px solid #bbb;
    border-right: 1px solid #bbb;
    padding: 14px 2px;
    margin: 0;
    text-align: center;
    font-weight: normal;
}
.page_clinic .daytime table td{
    box-sizing: border-box;
    vertical-align: top;
    text-align: center;
}
.page_clinic .daytime table th{
	background-color: #f8f8f8;
}
.page_clinic .daytime p{
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 18px;
}
.page_clinic .daytime dl{
	margin-bottom: 5px;
	line-height: 1.4;
}
.page_clinic .daytime dl dt{
	width: 4em;
	float: left;
	text-align: left;
}
.page_clinic .daytime dl dd{
	margin-left: 4em;
}
@media screen and (max-width: 768px) { /*  sp tablet */
	.page_clinic .daytime dl dt{
		float: none;
	}
	.page_clinic .daytime dl dd{
		margin-left: 0;
	}
}

.profile_tbl{
	border-collapse: collapse;
	border: 1px solid #bbb;
	margin-bottom: 20px;
}
.profile_tbl th,
.profile_tbl td{
	padding: 2px 15px;
	border: 1px solid #bbb;
	font-weight: normal;
}
.profile_tbl th{
	width: 8em;
}

ul.profile_2{
	margin-bottom: 20px;
	margin-left: 1em;
}
ul.profile_2 li{
	display: inline-block;
	width: 49%;
}
@media screen and (max-width: 640px) { /*  sp */
	ul.profile_2 li{
		display: block;
		width: 100%;
	}
}

ul.ayumi{
}
ul.ayumi li{
	display: inline-block;
	width: 33%;
}
ul.ayumi li p{
	padding: 0;
	margin: 0 auto 10px auto;
	font-size: 14px;
	line-height: 18px;
}
@media screen and (max-width: 640px) { /* SP */
	ul.ayumi li{
		width: 49%;
	}
}

.page_clinic  dl.policy dt{
	width: 30%;
	float: left;
}
.page_clinic dl.policy dt img{
	width: 100%;
}
.page_clinic dl.policy dd{
	width: 68%;
	float: right;
}
@media screen and (max-width: 640px) { /* SP */
	.page_clinic dl.policy dt{
		width: 40%;
		margin-left: 20px;
		float: right;
	}
	.page_clinic dl.policy dd{
		width: 100%;
		float: none;
	}
}

.page_clinic .gallery{
	margin-bottom: 30px;
}
.page_clinic .gallery dl{
	width: 33%;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	padding: 5px 2%;
	margin-bottom: 15px;
}
.page_clinic .gallery dl dd p{
	padding: 0;
	margin:0;
}

.page_clinic .gallery_2{
	text-align: center;
}


.list.colm2{
}
.list.colm2 li{
	width: 49%;
	display: inline-block;
	padding: 10px;
}

@media screen and (max-width: 768px) { /* SP */
	.page_clinic .gallery dl{
		width: 49%;
		padding: 5px 2%;
	}
}
.page_clinic .gallery dl dt{
	text-align: center;
	width: 100%;
}
.page_clinic .gallery dl dt img{
	border: 1px solid #ddd;
}

.page_clinic .gallery dl.wide{
	width: 100%;
	display: block;
	margin-bottom: 20px;
}
.page_clinic .gallery dl.wide dt{
	text-align: center;
	width: 30%;
	float: left;
	margin-right: 20px;
}




/* ===========

診療内容

=========== */
.rightbox ul.sidemenu li{
	background-color: #f8f8f8;
	border-bottom: 1px solid #ddd;
	display: block;
}
.rightbox ul.sidemenu li:last-child{
	border-bottom: 0;
}
.rightbox ul.sidemenu li a{
	display: block;
	padding: 10px 0.5em 10px 1em;
}
.rightbox ul.sidemenu li.title{
	padding: 6px 0.5em 6px 0.5em;
	text-align: center;
	border-top: 0;
	background-color: #f98700;
	color: #fff;
	border-bottom: 0;
}


.page_medical .block{
    margin-bottom: 0;
}
.page_medical .block .block_2 ul.list01 h3.mark{
	margin: 0;
}
.page_medical .block_2{
	width: 100%;
	margin-bottom: 30px;
}
.page_medical .block .block_2 ul.list01{
	margin: 15px auto;
}
.page_medical .block .block_2 ul.list01 li{
	margin-bottom: 20px;
}
.page_medical .block .block_2 ul.list01 li:last-of-type{
	margin-bottom: 0;
}
.page_medical .block .block_2 ul.list01 li figure{
	float: left;
	width: 150px;
	text-align: center;
}
.page_medical .block .block_2 ul.list01 .text{
	float: right;
    width: calc(100% - 150px - 20px);
}
.page_medical .block .block_2 ul.list01.wide_image li figure{
	width: 28%;
}
.page_medical .block .block_2 ul.list01.wide_image .text{
    width: calc(100% - 28% - 20px);
}
@media screen and (max-width: 768px) { /* SP */
	.page_medical .block .block_2 ul.list01 h3.mark{
		border-bottom: 0;
	}
	.page_medical .block .block_2 ul.list01 .text p{
		margin-top: 0;
	}
	.page_medical .block .block_2 ul.list01 li{
		margin-bottom: 20px;
		padding-bottom: 1px;
		border-bottom: 1px dotted #bbb;
	}
	.page_medical .block .block_2 ul.list01 li figure,
	.page_medical .block .block_2 ul.list01.wide_image li figure{
		width: 50%;
		margin: 0 auto;
		float: none;
	}
	.page_medical .block .block_2 ul.list01 .text,
	.page_medical .block .block_2 ul.list01.wide_image .text{
		width: 100%;
		float: none;
	}
}



/* =================================== */
/*	ページ内リンクの調整
/* =================================== */
@media screen and (min-width: 769px) { 
	#accessarea .title_container,#information .inner,.page_clinic,.page_medical{
		padding-top: 0;/* headerの高さ*/
	}
	#info,#menu01,#menu02,#menu03,#menu04,#menu05,#menu06,#menu07,#menu08 {
		padding-top:80px;
		margin-top: -80px;
		display: table;
	}
}


/* =================================== */
/*	2023.08.19追加
/* =================================== */


/* footer sp nav */
.sp_bottom-menu {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 50;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
	height: 60px!important;
}

.sp_bottom-menu__btn {
  font-weight: 600;
  font-style: normal;
  color: #fff!important;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  vertical-align: bottom;
  width: 50%;
  height: 60px;
  line-height: 60px;
  background-color: #f98900e3;
  text-align: center;
}

.sp_bottom-menu__btn::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 30px;
  background: url(../images/common/icon-sp-reserve.png) no-repeat center center/contain;
  margin-right: 5px;
	vertical-align: middle;
}

.sp_bottom-menu__btn--line {
  background-color: #416897cc !important;
}

.sp_bottom-menu__btn--line::before {
  width: 19px;
  height: 29px;
  background-image: url(../images/common/icon-sp-tel.png) !important;
}

@media screen and (max-width: 1100px) {
  .sp_bottom-menu {
    visibility: visible;
    height: auto;
    overflow: visible;
  }
}

li.sisetsu img {
    width: 322px;
    height: 80.5px;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
	li.sisetsu img {
    	width: 203px;
    	height: 50px;
    	object-fit: cover;
	}
}