@charset "UTF-8";

/* -------------------------
   reset
------------------------- */
/* Eric Meyer's Reset CSS v2.0 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration: none;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* -------------------------
   layout
------------------------- */
html{
    scroll-behavior: smooth;
}
body {
    background:#3a3a3a;
    font-family:serif,"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: black;
	font-size:1rem;
	line-height:1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
}
a{
    color: inherit;
}
.sp-menu,.sp-title{
    display: none;
}
@media screen and (max-width:768px) {
body{
	font-size:0.8rem;
	}
}
/* -------------------------
   menu
------------------------- */
.pc-menu{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #999999dd;
    color: #1a1a1a;
}
.logo{
    display: flex;
    align-items: center;
    padding: 0 30px;
}
.logo img{
    width: 70px;
    height: auto;
    padding-right: 10px;
}
.logo p{
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    font-weight: bold;
}
.pc-menu ul{
    display: flex;
    padding-right: 30px;
}
.pc-menu ul li{
    margin: 0 25px;
}
.pc-menu.HeightMin{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 70px;
    transition: 0.3s;
}
nav a:hover{
    color: #666;
    transition: 0.5s;
}
/* -------------------------
   first view
------------------------- */
.fv-sec {
    max-width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 0;
    margin-bottom: 100px;
}
 .sp-menu{
    display: none;
 }
 /* スクロール */
.scrolldown{
	position:absolute;
	bottom:0px;
	left:50%;
    z-index: 20;
}
.scrolldown span{
    z-index: 20;
	position: absolute;
	left:-22px;
	bottom:60px;
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.1em;
}
.scrolldown:before {
    z-index: 10;
    content: "";
    position: absolute;
    bottom:0;
    left:-4px;
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#fff;
	animation:
		circlemove 2s ease-in-out infinite,
		cirlemovehide 2s ease-out infinite;
}
@keyframes circlemove{
    0%{bottom:55px;}
   100%{bottom:-5px;}
}
@keyframes cirlemovehide{
    0%{opacity:0}
   50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}
.scrolldown:after{
    z-index: 10;
	content:"";
	position: absolute;
	bottom:0px;
	left:0;
	width:2px;
	height: 60px;
	background:#ffffff73;
}
/* ページトップ */
#page-top {
    z-index: 20;
	position: fixed;
	right: 50px;
    bottom: 10px;
	opacity: 0;
	transform: translateY(100px);
    width: 30px;
    height: 100%;
}
#page-top span{
    z-index: 20;
	position: absolute;
	left:16px;
	bottom:10px;
	color: #eee;
	font-size: 0.9rem;
	letter-spacing: 0.06em;
    text-align: center;
}
#page-top a{
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}
#page-top a:hover{
	color: #777;
}
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
/* -------------------------
   layout
------------------------- */
.main .wrap{
    max-width: 1200px;
    margin: 100px auto;
    background-color: #dddddddd;
    padding: 50px;
}
.sub-title{
    font-size: 2rem;
    margin-bottom: 20px;
}
.copy{
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.comment{
    font-size: 1rem;
}
/* lead-sec */
.lead-sec{
    padding-top: 20px;
}
.links{
    display: inline-block;
    padding: 10px 2px 2px;
    border-bottom: 1px solid #666;
}
.links:hover{
    color: #999;
    border-bottom: 1px solid #999;
    transition: 0.5s;
}
/* -------------------------
   footer
------------------------- */
.footer{
    width: 100%;
    height: 100px;
    background-color: #999999dd;
    text-align: center;
    color: #1a1a1a;
}
.copyright{
    font-size: 0.9rem;
    line-height: 100px;
    letter-spacing: 0.1rem;
}
/* -------------------------
   company
------------------------- */
.main-title{
    max-width: 100vw;
    height: 200px;
    text-align: center;
    margin: 170px 0 50px;
}
.main-title h2{
    font-size: 4rem;
    line-height: 200px;
    color: #fff;
    letter-spacing: 0.5rem;
    /* box-shadow: 0px 0px 15px -5px #333; */
    background-image: url(../img/hero03.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

/* -------------------------
   スライダー共通設定
------------------------- */
.slider {
    max-width: 1000px;
    height: 600px;
    margin: 25px auto 40px;
    position: relative;
}

/* Slickスライダーの基本設定 */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* スライダーアイテムの設定 */
.slider-item {
    width: 100%;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

/* レスポンシブ画像対応 */
.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 各スライダーの画像設定 */
.slider01-item01 {
    background-image: url(../img/works01.jpg);
}
.slider01-item02 {
    background-image: url(../img/works02.jpg);
}
.slider01-item03 {
    background-image: url(../img/works03.jpg);
}
.slider01-item04 {
    background-image: url(../img/works04.jpg);
}
.slider01-item05 {
    background-image: url(../img/works05.jpg);
}
.slider01-item06 {
    background-image: url(../img/works06.jpg);
}

.slider02-item01 {
    background-image: url(../img/jisseki1_01.jpg);
}
.slider02-item02 {
    background-image: url(../img/jisseki1_02.jpg);
}
.slider02-item03 {
    background-image: url(../img/jisseki1_03.jpg);
}
.slider02-item04 {
    background-image: url(../img/jisseki1_04.jpg);
}
.slider02-item05 {
    background-image: url(../img/jisseki1_05.jpg);
}
.slider02-item06 {
    background-image: url(../img/jisseki1_06.jpg);
}

.slider03-item01 {
    background-image: url(../img/recruit_01.jpg);
}
.slider03-item02 {
    background-image: url(../img/recruit_02.jpg);
}
.slider03-item03 {
    background-image: url(../img/recruit_03.jpg);
}
.slider03-item04 {
    background-image: url(../img/recruit_04.jpg);
}

/* Slickスライダーのナビゲーション */
.slick-prev, 
.slick-next {
    position: absolute;
	z-index: 6;
    top: 50%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    height: 25px;
    width: 25px;
}
.slick-prev {
    left:2.5%;
    transform: rotate(-135deg);
}
.slick-next {
    right:2.5%;
    transform: rotate(45deg);
}
.slick-dots {
	position: relative;
	z-index: 6;
    text-align:center;
	margin: 20px 0 0 0;
}
.slick-dots li {
    display:inline-block;
	margin:0 5px;
}
.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    height: 8px;
    display:block;
    border-radius:50%;
    border: 0px solid #999;
    background:#999;
}
.slick-dots .slick-active button{
    background:#555;
}

/* -------------------------
   lease-sec
------------------------- */
.lease-wrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
}
.lease-box{
    flex-basis: 32%;
    padding-bottom: 30px;
    margin: 0 auto;
    background-color: #fff;
}
.lease-box h3{
    font-size: 1.2rem;
    font-weight: bold;
    padding: 5px;
}
.lease-photo img{
    max-width: 100%;
}
.lease-comment{
    display: flex;
    padding: 5px;
    padding-bottom: 6px;
}
.lease-title{
    flex-basis: 35%;
    font-size: 0.95rem;
}
.lease-content{
    flex-basis: 55%;
    font-size: 0.9rem;
}
.select{
    padding-right: 10px;
    text-align: right;
}
.order{
    text-align: right;
    padding-bottom: 30px;
}
/* -------------------------
   recruit-sec
------------------------- */
.recruit-box{
    max-width: 98%;
    margin: 0 auto;
}
.recruit-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.recruit-content .photo{
    flex-basis: 50%;
}
.recruit-content .photo img{
    max-width: 100%;
}
.recruit-comment{
    flex-basis: 50%;
}

/* -------------------------
   sp対応
------------------------- */
@media only screen and (max-width:768px) {
    html{
        scroll-behavior: auto;
    }
    body {
        font-size:0.8rem;
    }
/* -------------------------
   menu
------------------------- */
    .pc-menu{
        display: none;
        position: static;
    }
    #page-top{
        display: none;
    }
/* フェードインアニメーションの定義 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
    .sp-title{
        width: 100%;
        position: absolute;
        inset: 50%;
        z-index: 15;
        display: block;
        transform: translate(-50%, -50%);
        opacity: 0;
    }
    /* アニメーションを適用するためのクラス */
.sp-title.show {
    animation: fadeIn 1s forwards;
}
    .sp-title h2{
        color: #fff;
        font-size: 2rem;
        text-align: center;
        letter-spacing: 0.3rem;
    }
    .open-btn1{
        z-index: 30;
        position: fixed;
        top: 15px;
        right: 20px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }
    .open-btn1 span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 25%;
        height: 3px;
        background-color: #fff;
        width: 50%;
    }
    .open-btn1 span:nth-child(1){
        top: 15px;
    }
    .open-btn1 span:nth-child(2){
        top: 23px;
    }
    .open-btn1 span:nth-child(3){
        top: 31px;
    }
    .open-btn1.active span:nth-child(1){
        top: 18px;
        left: 15px;
        transform: translateY(6px) rotate(-45deg);
        width: 40%;
    }
    .open-btn1.active span:nth-child(2){
        opacity: 0;
    }
    .open-btn1.active span:nth-child(3){
        top: 30px;
        left: 15px;
        transform: translateY(-6px) rotate(45deg);
        width: 40%;
    }
    .sp-menu{
        display: block;
        position: fixed;
        z-index: 20;
        top: 0;
        right: -120%;
        width: 100%;
        height: 100vh;
        transition: all 0.6s;
        background-color: #888;
        color: #1a1a1a;
    }
    .sp-menu.panelactive{
        right: 0;
    }
    .sp-nav{
        position: absolute;
        z-index: 20;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .sp-nav li{
        padding: 25px;
        text-align: center;
    }
    .sp-nav a{
        display: inline-block;
        font-size: 0.8rem;
    }
    .sp-nav a:hover{
        color: #555;
        transition: all .4s;
    }
/* -------------------------
   layout
------------------------- */
.main .wrap{
    max-width: 768px;
    margin: 20px 20px 50px;
}
.sub-title{
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.copy{
    font-size: 1.0rem;
    margin-bottom: 10px;
}
.comment{
    font-size: 0.8rem;
}
/* -------------------------
   footer
------------------------- */
.footer{
    height: 60px;
    background-color: #aaaaaa;
    text-align: center;
}
.copyright{
    font-size: 0.7rem;
    line-height: 60px;
}
/* -------------------------
   company
------------------------- */
.main-title{
    max-width: 100vw;
    height: 100px;
}
.main-title h2{
    font-size: 2rem;
    line-height: 100px;
    background-position: center 0px;
}

/* -------------------------
   スライダー（スマホ対応）
------------------------- */
.slider {
    width: 100%;
    height: 300px; /* 固定高さに変更 */
    margin: 0 auto 40px;
    padding: 0;
}

/* Slickで高さを維持 */
.slider .slick-list,
.slider .slick-track {
    height: 100%;
}

.slider-item {
    width: 100%;
    height: 300px; /* 固定高さに変更 */
    position: relative;
    background-size: cover; /* 画像で領域を埋める */
    background-position: center center;
    background-repeat: no-repeat;
}

/* imgタグを使用する場合 */
.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像で領域を埋める */
    object-position: center;
}

/* Slickスライダーのコントロール（スマホ用） */
.slick-prev, 
.slick-next {
    height: 20px;
    width: 20px;
}
.slick-prev {
    left: 20px;
}
.slick-next {
    right: 20px;
}

.slick-dots {
	margin: 10px 0 0 0;
}

.slick-dots button {
    width: 6px;
    height: 6px;
}

/* -------------------------
   lease-sec
------------------------- */
.lease-wrap{
    display: block;
    justify-content: start;
    flex-wrap: wrap;
    max-width: 768px;
}
.lease-box{
    max-width: 768px;
    flex-basis: 100%;
    padding-bottom: 30px;
    margin: 0 auto;
    background-color: #fff;
}
.lease-box h3{
    font-size: 1.0rem;
    font-weight: bold;
    padding: 5px;
}
.lease-photo img{
    max-width: 100%;
}
.lease-comment{
    display: flex;
    padding: 5px;
    padding-bottom: 6px;
}
.lease-title{
    flex-basis: 35%;
    font-size: 0.9rem;
}
.lease-content{
    flex-basis: 55%;
    font-size: 0.8rem;
}
.select{
    padding-right: 10px;
    text-align: right;
}
.order{
    text-align: right;
    padding-bottom: 30px;
}
/* -------------------------
   recruit-sec
------------------------- */
.recruit-sec ul{
    padding: 0 0 20px;
    font-size: 0.9rem;
}
.recruit-box{
    max-width: 98%;
    margin: 0 auto;
}
.recruit-content{
    display: block;
    justify-content: start;
    gap: 0px;
    margin-bottom: 50px;
}
.recruit-content .photo{
    max-width: 768px;
}
.recruit-content .photo img{
    max-width: 100%;
}
.recruit-comment{
    max-width: 768px;
}
.recruit-comment h3{
    font-size: 1rem;
    margin: 10px 0;
}

}

/* レスポンシブ画像対応 */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}