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

@media screen and (max-width:499.98px) { 
    /*　画面サイズが480pxからはここを読み込む　*/

}
@media screen and (min-width:500px) and (max-width:767px) {
    /*　画面サイズが768pxから991pxまではここを読み込む　*/

}
@media screen and (min-width:768px) and (max-width:991px) {
    /*　画面サイズが992pxからはここを読み込む　*/

}
@media screen and (min-width:992px) and (max-width:1309px) {
    /*　画面サイズが992pxからはここを読み込む　*/

}
@media screen and (min-width:1310px) {
    /*　画面サイズが992pxからはここを読み込む　*/

}
@media screen and (min-width:1600px) {
    /*　画面サイズが992pxからはここを読み込む　*/

}
@media screen and (min-width:1920px) {
    /*　画面サイズが992pxからはここを読み込む　*/

}


/*==================================
Cookie使用同意のポップアップ
===================================*/
  .cookie-consent {
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: -600px;
    /*left: calc(50% - 600px/2);*/
    width: 80%;
    left: calc(50% - 80%/2);
    font-size: 12px;
    background: #fff;
    padding: 1.2em;
    box-sizing: border-box;
    /*border: 1px solid #ddd;*/
    visibility: visible;
    transition: .5s;
	z-index: 1000000;
	box-shadow: 0 1rem 2rem hsl(0 0% 0% / 20%);
  }
  .cookie-consent-inner {
	/*display: inline-block; */ 
    border-bottom: #aaa solid 1px;
	margin-bottom: 30px;
  } 
  .cookie-consent.is-show {
    bottom: 30px;
	padding: 30px;
  }
  h2.cookie-title {
	margin: 0;
  }
  p.cookie-subtitle {
	font-size: 1.5em;
	margin: 10px 0 10px 5px;
  }
  ul.cookie-list {
	font-size: 1.2em;
	margin-left: -16px;
  }
  .cookie-text {
	font-size: 1.2em;
	margin: 20px 0 25px 0;
  }
  .cookie-agree {
    color: #fff;
    /*background: dodgerblue;*/
	background: #499bcc; 
	width: 200px;
	text-align: center;
    padding: 1em 1.5em;
  }
  .cookie-agree:hover {
    cursor: pointer;
  }
  /* パッと消える */
  .cc-hide1 {
    display: none;
  }
  /* ゆっくり消える */
  .cc-hide2 {
    animation: hide 1s linear 0s;
    animation-fill-mode: forwards;
  }
  @keyframes hide {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
  /* メディアクエリ */
  @media screen and (max-width: 499px) {
  .cookie-consent.is-show {
    bottom: 30px;
	padding: 25px;
  }
  h2.cookie-title {
	font-size: 1.8em;
  }
  p.cookie-subtitle {
	font-size: 1.4em;
	margin: 10px 0 10px 0px;
  }
  ul.cookie-list {
	font-size: 1.1em;
	margin-bottom: 10px;
	  margin-left: -24px;
  }
  .cookie-text {
	font-size: 1.1em;
	margin: 0;
  }
  }
  @media screen and (max-width: 600px) {
    .cookie-consent {
      flex-direction: column;
      width: 90%;
      left: calc(50% - 90%/2);
    }
    .cookie-text {
      width: 100%;
      margin-bottom: 1em;
    }
  }



/*==================================
共通
===================================*/
.infomation {
	
}.infomation h1 {
	display: none;
}

.hover-img {
  transition: 0.3s;
}
.hover-img:hover {
  opacity: 0.7;
}

.no-list {
	list-style: none;
}

.no-margin {
	margin: 0;
}

.float-r {
	float: right;
}

.text-tobashi {
    /*background-image : url("image/置き換えたい画像.png");*/
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}


@media (max-width: 499px) {
    .disp-no {
	display: none;
}
}



/*==================================
表示
===================================*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}






/*スマホの時だけ改行させるクラス*/
@media screen and (max-width: 600px){
  .pc{
    display: none;
  }
}

@media screen and (min-width: 600px){
  .sp{
    display: none;
  }
  .spbr{
    display: none;
  }
}
/*（途切れさせたくない単語がある場合）*/
.long_word{
  white-space: nowrap;
}





/*==================================
font
===================================*/
.bold {
    font-weight: bold;
}

.text-color-wh {
    color: #fff;
}

.text-color-yw {
    color: #ffa800;
}

.text-color-bl {
    color: #159dd1;
}

/*グレーアウト*/
.text-color-gy {
    color: #ddd;
}


.font-magistral-400 {
	font-family: "magistral", sans-serif;
	font-weight: 400;
	font-style: italic;
	letter-spacing: 1.5px;
}
.font-magistral-700 {
	font-family: "magistral", sans-serif;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 1.5px;
	line-height: 0.9em;
}



/*==================================
text
===================================*/
.indent-1 {
	padding-left:1em;
	text-indent:-1em;
}
.underline {
	text-decoration: underline;
}
.underline:hover {
	text-decoration: underline;
}


.hover-text {
	transition : all 0.3s ease 0s;
}

.hover-text:hover {
	opacity:0.7;
}


a.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}
a.anchor-2{
    display: block;
    padding-top: 200px;
    margin-top: -200px;
}
a.anchor-3{
    display: block;
    padding-top: 200px;
    margin-top: -200px;
}
.text-icon {
	text-align: left;
}
.text-bg {
	font-size: 0.7em;
	font-weight: 800;
	padding: 3px 3px 2px 3px;
	color: #fff;
	background-color: #4d5156;
	display: inline;
}


/*==================================
見出し
===================================*/
.heading08 {
	text-align: left;
	font-size: 1.9em;
	color: #4d5156;
	
	font-family: raleway, sans-serif;
	font-weight: 300;
	font-style: normal;
	
	letter-spacing: 0.5px;
	padding-bottom: 30px;
}

.heading08 span {
	display: flex;
	align-items: center;
	color: #cf2c29;
	font-size: 15px;
	text-transform: uppercase;
	padding-top: 5px;
}

.heading08 span::before {
	content: '';
	display: inline-block;
	margin-right: 5px;
	width: 10px;
	height: 1px;
	background-color: #cf2c29;
}


.ttl_line3s {
  font-weight: 500;
  font-size: 1.2em;
  border-bottom: 1px solid #e3e3e3;
  padding: 0.3em;
  margin-bottom: 1em;
  position: relative;
  text-align: left;
}
.ttl_line3s::after {
  content: '';
  background-color: #cf2c29;
  width: 1.5em;
  height: 3px;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
}



/*==================================
layout
===================================*/
@media screen and (min-width:1310px) {
    .container-fullfluid {
    margin: 0;
    height: auto;
    overflow: hidden;
}
    .container-fluid {
    margin: 0 100px;
}
    .container-fluid_2 {
    margin: 0 80px;
}
    .container-fluid_3 {
    margin: 0 40px;
}
    .marginInner {
    margin: 0 30px;
    
}
}
@media screen and (min-width:1200px) and (max-width:1309px) {
    .container-fullfluid {
    margin: 0;
    height: auto;
    overflow: hidden;
}
    .container-fluid {
    margin: 0 80px;
}
    .container-fluid_2 {
    margin: 0 60px;
}
    .container-fluid_3 {
    margin: 0 35px;
}
    .marginInner {
    margin: 0 25px;
    
}
}
@media screen and (min-width:992px) and (max-width:1199px) {
    .container-fullfluid {
    margin: 0;
    height: auto;
    overflow: hidden;
}
    .container-fluid {
    margin: 0 60px;
}
    .container-fluid_2 {
    margin: 0 40px;
}
    .container-fluid_3 {
    margin: 0 30px;
}
    .marginInner {
    margin: 0 20px;
    
}
}
@media screen and (min-width:768px) and (max-width:991px) {
    .container-fullfluid {
    margin: 0;
    height: auto;
    overflow: hidden;
}
    .container-fluid {
    margin: 0 40px;
}
    .container-fluid_2 {
    margin: 0 30px;
}
    .container-fluid_3 {
    margin: 0 15px;
}
    .marginInner {
    margin: 0 15px;
    
}
}
@media screen and (min-width:500px) and (max-width:767px) {
    .container-fullfluid {
    margin: 0 20px;
    height: auto;
    overflow: hidden;
}
    .container-fluid {
    /*margin: 0 50px;*/
    margin: 0 30px; 
}
    .container-fluid_2 {
    margin: 0 20px;
}
    .container-fluid_3 {
    margin: 0 10px;
}
    .marginInner {
    margin: 0 10px;
    
}
}

@media (max-width: 499px) {
    .container-fullfluid {
    margin: 0;
    height: auto;
    overflow: hidden;
}
    .container-fluid {
    margin: 0;
	padding: 0;
        
}
    .container-fluid_2 {
    margin: 0;
}
    .container-fluid_3 {
    margin: 0;    
}
}


.btn-center {
	text-align: center;
	margin: 0 auto;
}
.modal-content {
	
}

.margin-none {
    margin: 0;
}


.header-logo {
	cursor:pointer;
}

#header-top-box {
	background-color: #fff;
	height: 80px;
	text-align: center;
	line-height: 80px;
	margin: 0;
	padding: 0;
}
#icon-sns {
	margin-top: 32px;
	color: #4d5156;
}





ul.header-link {
	list-style: none;
	display: flex;
    justify-content: right;
	/*margin-right: 25%;*/
	margin-right: 10%;
	margin-bottom: 0;
	height: 80px;
	float: right;
	
}
ul.header-link li {
	padding: 0 30px 0 0;
}
#icon-sns:hover {
	color: #cf2c29;
}

@media (max-width: 767px) {
	ul.header-link {
	list-style: none;
	display: flex;
    justify-content: right;
	margin-right: 0px;
	}
	ul.header-link li {
	padding: 0 30px 0 0;
	}
}




/*==================================
NAVIGATION
===================================*/
.global-nav-box {
	border-bottom: #e4e4e4 solid 1px;
	
}
ul.global-nav {
	display: flex;
	height: 60px;
	margin: 0;
	padding: 0;
}
ul.global-nav li, ul.global-nav li a {
	display: inline-block;
	flex: 1;
	text-align: center;
	line-height: 60px;
	
	font-family: raleway, sans-serif;
	font-weight: 300;
	font-style: normal;
	
	font-size: 1.01em;
}
ul.global-nav li a:hover {
	color: #cf2c29;
}
/*グローバルナビ　上に固定*/
.global-nav-fixed {
    position:fixed;
    top:0;
    left:0;
    width: 100%;
    z-index: 20;
    animation:fade-in 0.5s;
	background: rgba(255,255,255,0.92);
	border-bottom: #e4e4e4 solid 1px;
	margin: 0;
	padding: 0;
}

@keyframes fade-in {
0%{margin-top:-64px;}
100%{margin-top:0;}
}



/*==================================
swiper
===================================*/
.swiper-button-prev, .swiper-button-next {
	color: #fff;
	width: 50px;  /* ボタン全体の幅 */
	height: 50px; /* ボタン全体の高さ */
}
.swiper-button-prev {
	left: 0;
}
.swiper-button-next {
	right: 0;
}
.swiper-pagination-bullet {
	opacity: 1; /*透過度を変更*/
	background-color: #ccc;
}
.swiper-pagination-bullet-active {
	background-color: #cf2c29;
	opacity: 1;/*アクティブなドットの透過度を1にする*/
}
.swiper-button-prev::after, .swiper-button-next::after {
	font-size: 30px; /* 矢印アイコンの大きさ */
}




/*==================================
button
===================================*/
.content-box-text {
	text-align: left;
}
.content-box-btn {
	text-align: center;
}
/*==================================
button
===================================*/
.red-btn, .btn-secondary {
    /*display: block;*/
    font-size: 14px;/*文字サイズ*/
    padding: 10px 30px;
    text-decoration: none;
    background: rgba(255,255,255,0);/*#fff;背景色*/
    color: #cf2c29;/*文字色*/
    max-width: 500px;
    margin: 12px auto;
    border: solid 1px #cf2c29;/*枠の色*/
    transition: .3s;
    border-radius: 60px;
}
.red-btn:hover, .btn-secondary:hover/*メールフォームの入力確認ボタン*/ {
    background: rgba(207,44,41,1);/*背景色*/
    border: solid 1px #cf2c29;/*枠の色*/
    color: #fff;/*文字色*/
}

.red2-btn, .btn-primary {
    /*display: block;*/
    font-size: 14px;/*文字サイズ*/
    padding: 10px 30px;
    text-decoration: none;
    background: rgba(207,44,41,1);/*背景色*/
    color: #fff;/*文字色*/
    max-width: 500px;
    margin: 12px auto;
    border: solid 1px #cf2c29;/*枠の色*/
    transition: .3s;
    border-radius: 60px;
}
.red2-btn:hover, .btn-primary:hover/*メールフォームの入力確認ボタン*/ {
    background: rgba(255,255,255,0);/*背景色*/
    border: solid 1px #cf2c29;/*枠の色*/
    color: #cf2c29;/*文字色*/
}



.linkColor_red {
	color: #cf2c29;
}
.linkColor_red:hover {
	color: #cf2c29;
	opacity: 0.5;
}

h5.dealer-name {
	padding-bottom: 10px;
	border-bottom: #ccc dashed 1px;
	font-size: 1em;
}
ul.dealeer-list {
	list-style: none;
	text-align: left;
	padding: 0;
	font-size: 0.9em;
}
ul.dealeer-list li {
	
	padding: 2px 0px;
}



.price-list {
	background-color: #fff;
	padding: 10px;
}

.service-box {
	width: 100%;
	text-align: center;
}

.contact-info {
	list-style: none;
	margin: 0 0 0 10px;;
	padding: 0;
	line-height: 1.5em;
	font-size: 0.8em;
}



/*==================================
ページ途中画像
===================================*/
div.fixed-wrap {
  position: relative;
  clip-path: inset(0 0 0 0);
  width: 100%;
  height: 500px;
}
div.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../images/common/foote-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}



.footer-address {
	color: #ccc;
	font-size: 1em;
	text-align: center;
	line-height: 1.8em;
	
	font-family: raleway, sans-serif;
	font-weight: 800;
	font-style: normal;
}
.footer-servicemenu {
	text-align: center;
	line-height: 1.8em;
}



/*==================================
SNS
===================================*/
#sns {
    /*background: linear-gradient(to right, #2a5daf, #71c5da);*/
}
.snsLinkBox {
    width: 100%;
    height: 72px;
    line-height: 72px;
    text-align: center;
	border-bottom: #e4e4e4 solid 1px;
}
.snsLinkBox-inner {
    width: 100%;
    height: 80px;
    margin: 0;
    padding: 0;
}

.snsLinkBox-inner li {
    display: inline-block;
    color: #fff;
    line-height: 72px;
	padding: 0 12px;
	margin-top: -5px;
}
.snsLinkBox-inner li i {
    color: #fff;
    height: 72px;
    line-height: 72px;
	
}



/*==================================
代理店
===================================*/
.div-box {
	background: #fff;
	padding: 20px;
}
.div-name {
	font-size: 1.2em;
	font-weight: bold;
	margin-top: 0;
	padding-bottom: 5px;
	border-bottom: #ccc dashed 1px;
}
.div-add {
	font-size: 0.9em;
	/*font-weight: bold;*/
	list-style: none;
	margin: 0;
	padding: 0;
}





