@charset "UTF-8";
/*
 * sp/common.css スマホ版共通
 */
html, body {
    font-size: 13px;
    color: #000;
    background-color: rgba(255,255,255,1.00);
    overflow-x: hidden;
}
h1 {
    font-size: 1.0rem;
}
h2 {
    font-size: 1.0rem;
}
h3 {
    font-size: 1.0rem;
}
h4 {
    font-size: 1.2rem;
    font-weight: bold;
}
h5 {
    font-size: 1.0rem;
    font-weight: bold;
}
h6 {
    font-size: 1.0rem;
    font-weight: bold;
}

/* タイトル部分　*/

.title {
	font-size: 1.3em;
	letter-spacing: 0.1em;
	white-space: nowrap;
	padding: 15px 0px 0px;
	font-weight: 600;
}

.title a {
	color: #FFF;
}

.title a img{
	width: auto;
	height: 50px;
	padding: 0px 16px 0px 0px;
}

#header-bottom {
    position: sticky;
    top: 0;
    background: linear-gradient(-135deg, #083361,#062A4F,#00172A);
    z-index: 99;
}

#header-bottom .container-fluid .row {
    align-items: center;
    height: 72px;
}

nav {
    visibility: hidden;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 1050;
    background-color: #fff;
    filter: opacity(0);
    transition: filter 300ms ease;
}
nav.active {
	visibility: visible;
	filter: opacity(1);
	position: absolute;
}
nav ul {
    display: block;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    font-size: 1.0rem;
    list-style: none;
}
nav ul li {
    display: block;
    margin: 0;
    padding: 0;
}
nav ul li a {
    display: block;
    padding: 15px 30px;
    color: #333;
    text-decoration: none;
}
nav ul li a::before {
    content: "▶";
    display: inline-block;
    margin-right: 5px;
    font-size: .8em;
    transform: scaleX(.6);
}
nav ul li a:hover {
    background-color: rgba(234,229,221,1.00);
    color: #FFF;
    text-decoration: none;
}
#btn-nav {
    display: block;
    position: absolute;
    right: 15px;
    top: 20px;
}
#btn-nav img {
    width: 35px;
    height: 35px;
}

/* footer */

#footer-top {
	margin: 64px 0px 0px;
    background-color: #E6E6E6;
    color: #000;
}
.footer_logo {
	font-size: 2em;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.footer_logo img {
	height: 50px;
	padding: 0px 8px 0px 0px;
}

.tel{
    font-size: 2em;
	padding: 0px 0px 0px 16px;
}
.tel img{
	height: 30px;
	padding: 0px 8px 0px 0px;
}
.text-small{
	font-size: 0.9rem;
	display: block;
	padding: 8px;
}

.call_btn {
	font-size: 1.5em;
	padding: 15px;
	font-weight: normal;
}
#footer-top .footer_ul ul li{
	list-style:none;
	}

#footer-top .footer_ul ul li a{
	display: block;
    padding: 8px 0px;
	color: #000;
    text-decoration: none;
	letter-spacing: 0.1em;
}

#footer-top .footer_ul ul li a:hover{
	background-color: rgba(121,127,130,1.00);
    color: #fff;
    text-decoration: none;
}

.accessmap iframe {
	width: 100%;
	height: 50vh;
}

#footer-top .gmaplink {
    text-align: center;
}
#footer-bottom {
    padding: 8px 0px;
    background: linear-gradient(-135deg, #083361,#062A4F,#00172A);
    color: #000;
    font-size: 0.8em;
}
#copyright {
    text-align: center;
	color: #fff;
	letter-spacing: 0.1em;
	
}
#copyright a {
	color: #fff;
	font-weight: 600;
}


/* ページTOP戻る　ボタン　*/

#pagetop {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
}
#pagetop a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: rgba(56,44,32,0.28);
}
#pagetop a:hover {
    background-color: rgba(56,44,32,0.51);
    text-decoration: none;
}
#pagetop a span {
    display: block;
    color: #fff;
    font-size: 2.0rem;
    transform: scaleY(.6);
}


/* お問合せ　*/
.waku {
	border: 1px solid #000;
	padding: 8px 0px 4px;
}

.contact_call{
	font-size: 2em;
}

.call-img img{
	height: 20px;
}

.contact_mail02 a {
	font-size: 1.2em;
	color: #000;
}

.contact_mail02 img{
	height: 20px;
	padding: 0px 8px 0px 0px;
}

/* 共通タイトル　*/

.sub_title {
  font-size: 1.2em;
  letter-spacing: 0.1em;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin: 0px auto 40px;
}

/*以下で線を表示*/
.sub_title:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -16px;/*線の上下位置*/
  display: inline-block;
  width: 100%;/*線の長さ*/
  height: 2px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: black;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}