@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Barlow+Condensed:400,500,600&display=swap');
a, abbr, acronym, address, applet, b, big, blockquote, body, caption, center, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, object, ol, p, pre, q, s, samp, small, span, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, var {
   margin: 0;
   padding: 0;
   background: transparent;
   border: 0;
   outline: 0;
   font-size: 1em
}
html {
   font-size: 62.5%
}
body, input, option, select, table, textarea {
   font-family: 'Josefin Sans','Noto Sans JP',sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
   display: block
}
ol, ul {
   list-style: none
}
blockquote, q {
   quotes: none
}
:focus {
   outline: 0
}
ins {
   text-decoration: none
}
del {
   text-decoration: line-through
}
img {
   vertical-align: top;
   max-width: 100%;
   height: auto
}
a, a:link {
   text-decoration: none
}
a, a:link, a:visited {
   color: #000000
}
a:active, a:hover, body {
 color: #000000;
 transition: .3s;
}
body {
   font-size: 1.6rem;
   line-height: 1.5;
   text-size-adjust: none;
   -webkit-text-size-adjust: none;
  	background: #F7F7F7;
	overflow-x: hidden;
}
body.fixed {
   width: 100%;
   height: 100%;
   left: 0;
   top: 0 !important
}
#container {
   text-align: left;
	padding: 30px 120px 25px 35px;
	left: 60px;
	position: fixed;
    top: 0;
    z-index: 10;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	width: calc(100% - 60px);
    box-sizing: border-box;
}
#container .infoBox{
	display: flex;
	justify-content: space-between;
}
#main {
   margin-top: 6pc;
   margin-bottom: 75pt
}
a[href^="tel:"] {
   cursor: default;
   pointer-events: none;
   text-decoration: none !important
}
h1 img{
	background-repeat: no-repeat;
	width: 215px;
}
h3{
	color: #9CA2A7;
    font-size: 17px;
	border-bottom: 1px solid #E8E8E8;
    padding-bottom: 6px;
    margin-bottom: 30px;
	margin-top: 60px;
}
h3:first-child{
	margin-top: 0;
}
@media all and (min-width:768px) {
   .sp {
      display: none !important
   }
}
@media all and (max-width:767px) {
   body {
      min-width: inherit;
      font-size: 1.3rem
   }
   a:hover, a:hover img {
      opacity: 1 !important
   }
   .pc {
      display: none !important
   }
   a[href^="tel:"] {
      cursor: pointer;
      pointer-events: auto
   }
   #main {
      margin-top: 2pc;
      margin-bottom: 52px
   }
	#container{
  padding: 20px 70px;
		margin-left: 0;
		left: 0;
        width: 100%;
	}
}

/*-------------------------------
common
-------------------------------*/
/* 左側固定エリア */
    .side-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 60px;
      height: 88%;
      background: #fff;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
     padding: 50px 0 80px;
    }

    /* ハンバーガー */
    .hamburger {
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .hamburger span {
      display: block;
      height: 2px;
      background: #000;
    }

    .hamburger span:first-child {
      width: 23px;
    }

    .hamburger span:last-child {
      width: 14px;
    }

    /* SNS */
    .sns {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* SCROLL */
    .scroll {
      text-align: center;
      font-size: 10px;
      letter-spacing: 1px;
		writing-mode: sideways-lr;
		writing-mode: vertical-rl;
		padding-left: 4px;
		position: relative;
    }

    .scroll::after {
      content: "";
      display: block;
      width: 1px;
      height: 70px;
      background: #000;
      margin: 5px auto 0;
		position: absolute;
		bottom: -80px;
		left: 0;
		right: 0;
    }

.menuWrapper{
	display: flex;
    flex-flow: column;
    gap: 45px;
}

    /* メニュー中身 */
    .menu-content {
      position: fixed;
      top: 0;
      left: -200px;
      width: 200px;
      height: 100%;
      background: #fff;
      padding: 110px 20px;
      box-sizing: border-box;
      transition: left 0.3s ease;
      z-index: 9998;
    }

    .menu-content.open {
      left: 60px; /* 左側固定分オフセット */
    }

.cover.is-active{
	z-index: 9990;
}

    .menu-content ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .menu-content li {
      margin-bottom: 20px;
		font-size: 16px;
    }

    .menu-content a {
      text-decoration: none;
      color: #000;
		font-size: 16px;
	}

.hamburger {
  position: relative;
  width: 28px; /* バツに合わせて幅を統一 */
  height: 10px; /* バツに合わせて高さを統一 */
}

.hamburger span {
  position: absolute;
  left: 0;
  height: 2px;
  background: #000;
  transition: 0.3s;
}

.hamburger span:first-child {
  top: 0;
  width: 23px; /* 閉じているときの上線 */
}

.hamburger span:last-child {
  bottom: 0;
  width: 14px; /* 閉じているときの下線 */
}

.hamburger.is-active span {
  width: 28px; /* バツのときは2本とも同じ幅に */
}

.hamburger.is-active span:first-child {
  transform: rotate(25deg);
  top: 4px; /* バツの中心にくるよう調整 */
}

.hamburger.is-active span:last-child {
  transform: rotate(-25deg);
  top: 4px; /* バツの中心に重ねる */
}

.main{
	margin-left: 60px;
	margin-top: 117px;
}
.copy{
	position: fixed;
    z-index: 100;
	right: 34px;
    top: 50%;
    transform: translate(-50%, -50%);
}
.copy p{
	writing-mode: sideways-rl;
	writing-mode: vertical-rl;
	font-size: 12px;
}
.h2{
	display: flex;
	padding-top: 65px;
	padding-left: 33px;
	margin-bottom: 30px;
	align-items: flex-start;
    gap: 15px;
}
h2{
	font-size: 28px;
    font-weight: 500;
	display: flex;
	flex-flow: column;
	gap: 7px;
}
h2 span{
	color: #9CA2A7;
    font-size: 16px;
}
h4{
	color: #9CA2A7;
	margin-bottom: 20px;
}
a.moreBtn{
	font-size: 18px;
    color: #fff;
    background: #000000;
    border-radius: 5px;
    padding: 12px 35px;
    font-weight: 300;
	display: inline-block;
}
a:hover{
	opacity: 0.7;
}
.searchBox{
	display: flex;
}
.searchBox p{
	padding-top: 20px;
    padding-right: 40px;
    font-size: 14px;
}
.searchBox input#s{
	background: #D5D5D5;
    border: none;
    width: 190px;
    height: 36px;
	border-radius: 5px;
	padding-left: 40px;
}
.searchBox input#searchsubmit{
	display: none;
}
.searchBox #searchform{
	position: relative;
	border-radius: 5px;
}
.searchBox #searchform::before{
	content: '';
	display: inline-block;
	background-image: url("../../img/common/search.svg");
	width: 15px;
	height: 16px;
	position: absolute;
	top: 15px;
	left: 15px;
	background-size: cover;
}
.titleBox{
	display: flex;
    justify-content: space-between;
}

/*パンクズリスト*/
.breadcrumb {
  color: #9CA2A7;
  font-size: 14px;
	padding: 60px 50px 0 0;
}

.breadcrumb a {
  color: #9CA2A7;
  text-decoration: none;
}


@media all and (max-width:767px){
	.copy{
		display: none;
	}
 .side-menu{
  padding: 35px 25px 0;
  background: none;
  position: fixed;
  display: block;
  height: auto;
  top: 0;
  left: unset;
  width: 30px;
	}
	.main{
		margin-left: 0;
		margin-top: 70px;
	}
	.h2{
		padding: 54px 0 0 0;
		margin-bottom: 20px;
	}
	.menu-content{
		left: -100%;
	}
	.menu-content.open{
		left: 0;
		z-index: 10;
		width: 100%;
  padding: 70px 20px 20px;
		text-align: center;
	}
 .menu-content.open > a img{
  width: 80%;
  margin: 0 auto 5px;
 }
	.menu-content ul{
		margin-top: 40px;
	}
	.menu-content ul li:last-child{
		display: flex;
		justify-content: center;
        gap: 20px;
	}
	.menu-content li{
		margin-bottom: 20px;
	}
 .menu-content a{
  font-size: 17px;
 }
	.menu-content a:last-child{
		padding-top: 1px;
	}
	.menu-content.open .search{
		margin-top: 20px;
	}
}

/*-------------------------------
Footer
-------------------------------*/
#contact{
	padding-bottom: 60px;
}
#contact .contactBox a{
	display: flex;
	background: #fff;
    width: 60%;
    margin: 0 auto;
    padding: 40px;
	gap: 50px;
	position: relative;
}
#contact .contactBox a::after{
	content: '';
	display: inline-block;
	background-image: url("../../img/common/arrow-right.svg");
	width: 34px;
	height: 34px;
	background-size: cover;
	position: absolute;
	right: 40px;
    top: 48px;
}
#contact .title{
	font-size: 30px;
}
#contact .title span{
	font-size: 16px;
	display: inline-block;
	padding-left: 10px;
}
#contact .tell,#contact .fax{
	font-size: 25px;
	font-family: 'Roboto', sans-serif;
	padding-left: 32px;
	position: relative;
}
#contact .tell::before{
	content: '';
	display: inline-block;
	background-image: url("../../img/common/icon-tell.svg");
	width: 21px;
	height: 21px;
	position: absolute;
	left: 0;
	top: 7px;
}
#contact .fax::before{
	content: '';
	display: inline-block;
	background-image: url("../../img/common/icon-fax.svg");
	width: 18px;
	height: 18px;
	position: absolute;
	left: 0;
	top: 10px;
}
#contact .border{
	content: "";
    display: inline-block;
    width: 1px;
    height: 1.8em;
    background: #000;
    transform: rotate(20deg);
    margin: 6px 0.5em;
    vertical-align: middle;
}
#contact .wrapper{
	display: flex;
	gap: 25px;
	padding-top: 5px;
}

#gFooter{
	background: #9CA2A7;
    color: #fff;
}
#gFooter a{
	color: #fff;
	text-decoration: underline;
}
#gFooter .fBox{
	width: 80%;
 margin: 0 auto;
 display: flex;
 padding: 60px 0;
	justify-content: space-between;
	align-items: flex-end;
}
#gFooter .fBox .lBox .fLogo img{
 max-width: 330px;
}
#gFooter .rBox{
	width: 50%;
}
#gFooter .rBox .clearfix{
	display: flex;
 flex-wrap: wrap;
	gap: 10px;
 justify-content: flex-end;
}
#gFooter .rBox .clearfix li{
 width: calc((100% - 30px) / 4);
}
#gFooter .rBox .clearfix li a,
#gFooter .rBox .clearfix li a img{
 width: 100%;
}
#gFooter .address,#gFooter .mail,#gFooter .privacy-policy{
	font-size: 16px;
    font-weight: 300;
    font-family: 'Noto Sans JP';
}
#gFooter .address{
	margin-top: 10px;
}
#gFooter .mail{
	margin: 12px 0;
}

@media all and (max-width:767px){
	#contact .contactBox a{
		flex-flow: column;
		text-align: center;
		gap: 40px;
		padding-bottom: 110px;
	}
	#contact .wrapper{
		flex-flow: column;
		gap: 15px;
	}
	#contact .title{
		line-height: 25px;
	}
	#contact .contactBox a::after{
		top: unset;
		bottom: 45px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	
	#gFooter .fBox{
		flex-flow: column;
		gap: 58px;
		align-items: flex-start;
	}
	#gFooter .rBox{
		width: 100%;
	}
	#gFooter .rBox .clearfix{
		flex-wrap: wrap;
	}
	#gFooter .rBox .clearfix li{
		width: calc(100%/2.1);
	}
}