html{
    scroll-behavior: smooth;
}
.pc{
    display: block;
}
.sp{
    display: none;
}
.relative{
    position: relative;
}
.abs{
    position: absolute;
}
p{
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
}
a{
    opacity: 1;
    transition: opacity 3s ease;
}
a:hover{
    opacity: 0.5;
}
.container{
    max-width: 1320px;
    margin: 0 auto;
}
.page-title{
    margin-top: 0;
}
header {
    background-color: #000;
    height: 80px;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}
header .logo{
    position: absolute;
    width: calc(220px + 1vh);
    top: 50%;
    transform: translateY(-50%);
    left: 2vw;
}
header .logo a{
    display: block;
    width: 100%;
}
.overViewWrap{
    position: relative;
    right: 2vw;
    display: flex;
    align-items: center;
    gap: 20px;
}
.overViewWrap .tel{
    width: calc(220px + 1vh);
}
.overViewBox{
    display: flex;
    gap: 20px;
}
.overViewBox a{
    color: #fff;
}
.dli-chevron-right {
    display: inline-block;
    vertical-align: baseline;
    color: #fff;
    width: 0.6em;
    height: 0.6em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    margin-left: 5px;
}
.yoyakuWrap{
    display: flex;
}
.yoyakuWrap li{
    width: 115px;
    height: 80px;
    position: relative;
}
.yoyakuWrap li:first-child{
    background: linear-gradient(180deg, #9e4538 0%, #532820 100%);
}
.yoyakuWrap li:last-child{
    background: linear-gradient(180deg, #726d53 0%, #b6ae85 94%);
}
.yoyakuWrap li a{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.yoyakuWrap li a p{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.yoyakuWrap li a::before{
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    transform: skewX(-25deg);
}
.yoyakuWrap li a:hover::before{
    animation: shine 0.7s;
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
@media screen and (max-width: 1319px){
    .container{
        width: 90%;
    }
}
@media screen and (max-width: 768px){
    .page-title {
        margin-top: 80px;
    }
    .hamburger{
        width: 80px;
        height: 80px;
        position: absolute;
        top: 0;
        right: 0;
        background: #007B8C;
        border: 0;
        pointer-events: auto;
        z-index: 9999;
    }
    .hamburger.active{
        background: none;
    }
    .hamburger span{
        position: absolute;
        display: inline-block;
        background-color: #fff;
        width: 40px;
        height: 3px;
        left: 21px;
    }
    .hamburger span:nth-child(1) {
        top: 25px;
    }
    .hamburger span:nth-child(2) {
        width: 40px;
        top: 40px;
    }
    .hamburger span:nth-child(3) {
        top: 55px;
    }
    .hamburgerMenu{
        transform: translateX(100%);
        opacity: 0;
        transition: .5s;
    }
    .hamburger.active span:nth-child(1){
        top: 50%;
        transform: rotate(45deg);
    }
    .hamburger.active span:nth-child(2){
        opacity: 0;
    }
    .hamburger.active span:nth-child(3){
        top: 50%;
        transform: rotate(-45deg);
    }
    .hamburgerMenu.active{
        transform: translateX(0);
        opacity: 1;
        background: rgba(0, 123, 140, .80);
        width: 100vw;
        height: calc(100vh - 100px);
        position: relative;
    }
    .hamburgerMenu.active ul{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .hamburgerMenu.active ul li a{
        display: block;
        width: 100%;
        color: #fff;
        border-bottom: 1px solid #fff;
        padding-bottom: 5px;
        margin-bottom: 20px;
    }
    .spBottom{
		position: fixed;
		bottom: 0;
		z-index: 9999;
		width: 100%;
	}
	.spBottom ul{
		display: flex;
		flex-wrap: wrap;
	}
	.spBottom li{
		height: 50px;
		color: #fff;
	}
	.spBottom li:nth-child(1){
		width: 100%;
		background: #000;
	}
	.spBottom li:nth-child(2){
		width: 50%;
		background: linear-gradient(180deg, #726d53 0%, #b6ae85 94%);
	}
	.spBottom li:nth-child(3){
		width: 50%;
		background: linear-gradient(180deg, #9e4538 0%, #532820 100%);
	}
	.spBottom li a{
		display: flex;
		width: 100%;
		height: 100%;
		align-items: center;
		justify-content: center;
	}
}