@charset "utf-8";

/* font */
body{
  /* color:#000;
  background-color: #f4f4f4;
  font-size:1.4em;
  font-family: "游ゴシック","Yu Gothic",YuGothic,"Hiragino Kaku Gothic ProN","メイリオ",sans-serif;*/
}

a:link{
  color:#000;
  text-decoration:none;
}

a:active{
  color:#000;
  text-decoration:none;
}

a:visited{
  color:#000;
  text-decoration:none;
}

/* header */
header{
  width: 100%;
  background-color: #ffffff;
}

.head_sp{
  display: none;
}

header .header-box{
  background: rgba(255,255,255,0.9);
  margin: 0 auto;
  padding:12px 0;
  position: relative;
  width: 1000px;
}

header .header-box .logo,
header .header-box .tel,
header .header-box .header-nav{
  display: inline-block;
}

header .header-box .tel{
  float: right;
  margin-top: 15px;
}

header .header-box .header-nav{
  position: absolute;
  right: 230px;
  top: 30px;
}

header .header-box .header-nav li{
  float: left;
  font-weight: bold;
  margin-left: 45px;
}

/* global-nav */
.global-nav-box{
  width: 100%;
  background-color: #f4f4f4;
}

.global-nav{
  margin: 0 auto;
  width: 1000px;
  padding: 24px 0;
}

.global-nav ul{
  box-sizing: border-box;
  display: table;
  width: 1000px
;}

.global-nav li{
  box-sizing: border-box;
  display: table-cell;
  padding-bottom: 10px;
  text-align: center;
  width: 14.28%;
}

.global-nav li:hover{
  border-bottom: 2px solid #000000;
  padding-bottom: 8px;
}

/* wrapper */
.wrapper {
  width: 1100px;
  padding-bottom: 40px;
  margin: -80px auto 100px auto;
  background: #fff;
}

.wrapper h2{
    padding-top: 39px;
    margin-bottom: 43px;
    font-size: 30px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 43px;
    font-family: "游明朝体", "Yu Mincho", "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

/* page-name */
.page-name {
  padding: 30px 0;
  text-align: center;
  background-color: #f4f4f4;
}

.page-name .name {
    font-family: 'Cinzel Decorative',cursive;
    font-size: 38px;
    border-bottom: 1px solid #e5e5e5;
    letter-spacing: 3px;
    width: 1000px;
    margin: 0 auto;
}

.page-name .border {
  border-bottom: 2px solid black;
  width: 100px;
  margin: 0 auto;
}

.page-name .name-h1 {
  margin-top: 20px;
}

/* contact */
.contact_bl {
    background-color: #e5e5e5;
    background-size: cover;
    color: black;
    height: 480px;
    width: 100%;
}
.contact-inner {
    margin: 0 auto;
    padding: 55px 0 50px;
    text-align: center;
    width: 70%;
    width: 1100px;
}

.contact-inner .sec-tit-img {
    text-align: center;
}

.contact-inner .sec-tit-img {
    text-align: center;
}

.contact-inner h2 {
    margin: 0;
    padding: 10px 0 25px;
}

.contact-inner .cn-text {
    padding-bottom: 60px;
}

.contact-inner .contact-tel_bl{
    float: left;
}

.contact-inner .contact-tel_bl,
.contact-inner .contact-form_bl {
    height: 120px;
    border: 1px solid black;
    box-sizing: border-box;
    color: black;
    display: inline-block;
    width: 495px;
}

.contact-inner .tel-text,
.contact-inner .form-text-top{
    padding: 20px;
}
.contact-inner .form-text-bottom{
    font-size: 2.8rem;
}

/**pankuzu**/
.pankuzu_text {
	position: relative;
	/*top: 20px;*/
}

.pankuzu_bottom {
	width: 1000px;
	margin: 0 auto;
	background-color: white;
	height: 42px;
    line-height: 60px;
}
.pankuzu_wrapper {
	background-color: white;
	width: 100%;
	height: 60px;
}

/*button*/
.button {
    position: relative;
    display: inline-block;
	/* font-size: 100%; */
	font-size: 14px;
    /* line-height: 3.25em; */
    height: 43px;
    width: 295px;
    background-image: linear-gradient( -45deg, #fff 25%, #e8e8e8 25%, #e8e8e8 50%, #fff 50%, #fff 75%, #e8e8e8 75%, #e8e8e8);
    background-size: 6px 6px;
    border: 1px solid #000;
    color: #000;
    text-align: center;
    text-decoration: none;
}
.button.more{
	/* font-family: 'Cinzel Decorative',cursive;
	font-size: 110%;
	line-height: 3em;
	color: #000; */
}
.button_white.more{
	/* font-family: 'Cinzel Decorative',cursive;
	font-size: 110%;
	line-height: 3em;
	color: #fff; */
}
.button::before,
.button::after {
  position: absolute;
  top: 65%;
  right: -5%;
  content: '';
  transform: skewX(45deg);
  width: 60px;
  padding: 3px 0px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.button::after,.button_white::after {
  opacity: 0;
  right: 1em;
}
.button:hover::before,.button_white:hover::before {
  animation: arrowbefore .5s;
}
.button:hover::after,.button_white:hover::after {
  animation: arrowafter .5s;
}
@keyframes arrowbefore {
  100% {
    right: -.4em;
    opacity: 0;
  }
  }
  @keyframes arrowafter {
  99% {
    right: -5%;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*button_white*/
.button_white {
    position: relative;
    display: inline-block;
	/* font-size: 100%; */
	font-size: 14px;
    /* line-height: 3.25em; */
    height: 43px;
    width: 295px;
    background-image: linear-gradient( -45deg, transparent 25%, #595959 25%, #595959 50%, transparent 50%, transparent 75%, #595959 75%, #595959);
    background-size: 6px 6px;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    text-decoration: none;
}
.button_white:hover{
	background-image: linear-gradient( -45deg, transparent 25%, #001A43 25%, #001A43 50%, transparent 50%, transparent 75%, #001A43 75%, #001A43);
}

.button:hover{
    background-image: linear-gradient( -45deg, #fff 25%, #9ac3ec 25%, #9ac3ec 50%, #fff 50%, #fff 75%, #9ac3ec 75%, #9ac3ec);
}

.button_white::before,
.button_white::after {
  position: absolute;
  top: 65%;
  right: -5%;
  content: '';
  transform: skewX(45deg);
  width: 60px;
  padding: 3px 0px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

/* footer */
footer{
  background: #f4f4f4;
  padding-top: 30px;
  width: 100%;
}

footer .ft-inner{
  /* margin: 0 auto;
  width: 1000px; */
}

footer .sitemap{
  /* display: inline-block;
  vertical-align: top;
  width: 15%;
  margin-right: 1.32%; */
}
footer .sitemap dt{
  border-bottom: 1px solid #b3b3b3;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
}
footer .sitemap dd{
  /* font-size: 1.2rem;
  padding-bottom: 1.2rem; */
}

footer .sec{
  /* height: 100px; */
  margin: 0 auto;
  padding: 30px 0;
  width: 1000px;
}
footer .logo{
  float: left;
  margin-right: 20px;
}
footer .japhic{
  float: right;
}
footer .logo-2{
  float: right;
}

/* copy */
.copy{
  background:#000000;
  color: #949494;
  font-size: 1.2rem;
  padding: 16px 0;
  text-align: center;
  width: 100%;
}

.ft-bnr ul{
	/* width: 1140px; */
}

/* .ft-bnr ul li.ft_up{
width: 48%;
margin: 0px 0px 15px 18px;
height: 128px;
} */

.ft-bnr ul li.ft_md{
    width: 32%;
    margin: 0px 0px 15px 14px;
    height: auto;
}

.ft-bnr ul li.ft_down{
    width: 23%;
    margin-left: 19px;
    height: auto;
}

.ft-bnr ul li.ft_up img{
    width: 556px;
    height: auto;
}

.ft-bnr ul li.ft_md img{
    width: 373px;
    height: 132px;
}

.ft-bnr ul li.ft_down img{
    width: 275px;
    height: 132px;
}

/* 追記 20211210 */
/* .bnr__hl {
	width: 1140px;
	margin: 50px auto 0;
	font-size: 0;
}
.bnr__hl ul {
}
.bnr__hl ul li {
	display: inline-block;
	width: 33%;
	margin: 0 0.5% 0 0;
}
.bnr__hl ul li:last-child {
	margin: 0 0 0 0;
}
.bnr__hl ul li img {
	width: 100%;
} */
.hl__slick {
	margin: 30px auto 0;
	width: 1140px;
}
.hl__slick li {
	/* margin: 0 2px; */
	display: inline-block;
	width: 33%;
	margin: 0 0.5% 0 0;
}
.hl__slick li:last-child {
	margin: 0 0 0 0;
}
.hl__slick li img {
	width: 100%;
}




/* 追記 20211220 ボトムバナー */
.blBnr__slick {
	margin: 50px auto 0;
	width: 1140px;
}
.blBnr__slick li {
	margin: 0 2px;
}

.blBnrSub__slick {
	margin: 50px auto 0;
	width: 1140px;
}
.blBnrSub__slick li {
	margin: 0 2px;
}

/* 鴨居バナー */
.bnr_reasis-yokohamakamoi {
	text-align: center;
	margin: 50px 0 0;
}