@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');
:root{
	--black: rgba(31,31,31,1);
	--black50: rgba(31,31,31,0.5);
	--black40: rgba(31,31,31,0.4);
	--black10: rgba(31,31,31,0.1);
	--black05: rgba(31,31,31,0.05);
    --purple: rgba(76,19,93,1);
    --purple20: rgba(76,19,93,0.2);
    --purple10: rgba(76,19,93,0.1);
	--gold: rgba(206,158,16,1);
    --gold20: rgba(206,158,16,0.2);
    --gold10: rgba(206,158,16,0.1);
    --green: #165d1a;
    --blue: #115275;
    --violet: #c6a7d5;
}
* {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
	color: var(--black);
}
p,dt,dd,tr,th,td,li,a,b,em,span,strong,div,img,header,section,article,nav,footer,h1,h2,h3,h4,h5,h6,button{
	font-size: clamp(15px, 1.8vw, 17px);
	line-height: 1.6;
}
small{
	font-size: clamp(13px, 1.1vw, 16px);
	line-height: 1.3;
}
li{
	line-height: 1.5;
}
p{
	line-height: 1.6;
	margin: 0 0 1em;
}
p:last-child{
	margin-bottom: 0;
}
.wrapper{
	width: 90%;
	margin-inline: auto !important;
}
.wrap{
	width: 90%;
	max-width: 1280px;
	margin-inline: auto !important;
}
.page-h2{
    font-size: clamp(22px, 3.4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-h2:before,
.page-h2:after{
    content: "";
    display: block;
    width: 2em;
    height: 1px;
    background: var(--black);
}
.page-h3{
    font-size: clamp(18px, 3vw, 28px);
}
.page-h3:before{
    content:"\f24e";
    font-family: 'Font Awesome 6 Pro';
    color: var(--purple);
}
.btn-a {
    background: var(--purple);
    padding: 1em;
    min-width: 15em;
    display: inline-block;
    line-height: 1;
    color: #fff;
	cursor: pointer;
	border: none;
	box-shadow: none;
	transition: 0.3s all;
}
.btn-a:hover {
    background: var(--gold);
}
@media screen and (max-width: 780px) {
    .tel{
        color: var(--gold);
        text-decoration: underline;
    }
    .tel:hover{
        color: var(--purple);
    }
}
@media screen and (max-width: 480px) {
    .page-h3{
        text-align: center;
    }
    .page-h3:before{
        display: block;
        text-align: center;
        font-size: 48px;
        margin: 0 auto 0.2em;
        background: #fff;
        width: 1.5em;
    }
    .lead br{
        display: none;
    }
}

/*HEADER*/
.header{
    width: 100%;
	position: sticky;
	top: 0;
    z-index: 999;
}
.header-top{
	display: flex;
	justify-content: space-between;
    align-items: center;
	background: #fff;
    padding: 1em 0;
    transition: all 0.2s ease;
    width: 95%;
    margin-inline: auto !important;
}
.header-h1_a{
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1;
}
.header-h1_a small{
    display: block;
    font-size: clamp(16px, 2vw, 28px);
}
.header-add a,
.header-add{
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.4;
    text-align: right;
}
.header-add span{
    display: none;
}
.header-nav{
    background: var(--purple);
}
.gnav{
    display: flex;
    width: 95%;
    margin-inline: auto !important;
}
.gnav-trigar{
    display: none;
}
.gnav-mega{
    position: relative;
    padding: 0.5em 3em 0.5em 0;
}
.gnav-a{
    color: rgba(255,255,255,0.8);
    padding: 0.5em 2em 0.5em 0;
    font-size: clamp(15px, 1.2vw, 18px);
}
.gnav-h5{
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    position: relative;
    transition: 0.3s all;
    font-size: clamp(15px, 1.2vw, 18px);
}
.gnav-h5::before,
.gnav-h5::after {
    content: '';
    position: absolute;
    width: 1em;
    height: 1.4px;
    background: #fff;
    right: -1.2em;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease, opacity 0.5s ease, background 0.3s ease;
}
.gnav-h5:before{
    transform: translateY(-50%) rotate(0deg);
}
.gnav-h5:after{
    transform: translateY(-50%) rotate(90deg);
}
.gnav-h5.open:after{
    transform: translateY(-50%) rotate(180deg);
    opacity: 0;
}
.gnav-h5.open:before{
    transform: translateY(-50%) rotate(360deg);
}
.gnav-h5.open,
.gnav-a:hover,
.gnav-h5:hover{
    color: #fff;
}
.gnav-ol{
    display: none;
    position: absolute;
    left: -1em;
    top: 2em;
    background: var(--purple);
    padding: 0.5em 0;
    width: calc(100% + 4em);
}
.gnav-ol.open{
    display: block;
}
.gnav-li_a {
    color: #fff;
    padding: 0.5em 1em;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 90%;
}
.gnav-li:last-child .gnav-li_a {
    border-bottom: none;
}
.gnav-li_a:hover{
    background: rgba(255,255,255,0.1);
}
.gnav-mobile{
    display: none;
}
.header.sticky{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
.header.sticky .header-top{
    height: 0;
    padding: 0;
    opacity: 0;
}
@media screen and (max-width: 980px) {
    .header {
        display: flex;
    }
    .header-h1{
        padding-left: 1em;
    }
    .header-nav {
        width: 5em;
        padding: 1em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #fff;
    }
    .gnav{
        position: fixed;
        top: 0;
        right: -100%;
        display: block;
        background: var(--purple);
        padding: 2em 1em 5em;
        height: 100%;
        width: 100%;
        overflow: scroll;
        transition: 0.3s all;
    }
    .gnav.clicked{
        right: 0;
    }
    .gnav-trigar{
        display: block;
        position: relative;
        cursor: pointer;
        height: 25px;
    }
	.gnav-trigar span{
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--purple);
        transition: 0.3s ease;
	}
    .gnav-trigar.clicked span{
        background: #fff;
    }
    .gnav-trigar span:nth-of-type(1) {
        top: 0;
    }
    .gnav-trigar span:nth-of-type(2) {
        top: 11px;
    }
    .gnav-trigar span:nth-of-type(3) {
        top: 22px;
    }
    .gnav-trigar.clicked span:nth-of-type(1) {
        transform: rotate(405deg);
        top: 11px;
    }
    .gnav-trigar.clicked span:nth-of-type(2) {
        opacity: 0;
    }
    .gnav-trigar.clicked span:nth-of-type(3) {
        transform: rotate(-405deg);
        top: 11px;
    }
    .gnav-mega{
        display: block;
        width: 100%;
        padding: 1em 0;
    }
    .gnav-h5{
        cursor: inherit;
        pointer-events: none;
        font-size: 16px;
    }
    .gnav-h5::after {
        display: none;
    }
    .gnav-h5::before{
        content: "◎";
        color: #fff;
        position: relative;
        top: inherit;
        right: inherit;
        background: transparent;
        transform: inherit;
    }
    .gnav-a{
        display: block;
        width: 100%;
        border: 1px solid rgba(255,255,255,0.7);
        margin-bottom: 5px;
        padding: 1em;
        font-size: 16px;
    }
    .gnav-ol {
        display: block !important;
        position: relative;
        left: inherit;
        top: inherit;
        padding: 0;
        width: 95%;
        background: rgba(255, 255, 255, 0.1);
        margin: 0.5em 0 0 auto;
    }
    .gnav-li_a {
        padding: 1em;
        font-size: 16px;
    }
    .gnav-a:hover{
        background: rgba(255,255,255,0.1);
    }
    .gnav-mobile{
        display: block;
        padding: 1em;
        color: #fff;
        font-size: 18px;
    }
    .gnav-mobile span{
        color: #fff;
        display: block;
        font-size: 18px;
    }
    .gnav-mobile a{
        color: #fff;
        font-size: 18px;
    }
}
@media screen and (max-width: 480px) {
    .header-add{
        display: none;
    }
    .header-top {
        height: 70px;
    }
    .gnav {
        padding-top: 70px;
    }
}

/*FOOTER*/
.footer{
	background: var(--black);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.foote-nav {
    padding: 2em 1em 3em;
    background: url(../img/scale_b.png) repeat-x top;
    text-align: center;
}

.footer-copy,
.footer-nav_a{
	display: inline-block;
	padding: 0 1em;
	line-height: 1em;
	color: #fff;
	font-size: clamp(12px, 1.1vw, 14px);
}
.footer-nav_a:hover{
    color: var(--gold);
}
@media screen and (max-width: 680px) {

}
@media screen and (max-width: 480px) {

}

/*TOTOP*/
#totop {
    position: fixed;
    bottom: 1em;
    right: 1em;
    z-index: 99999;
}
#totop i{
    font-size: clamp(38px, 4vw, 54px);
    color: var(--gold);
}
#totop:hover{
	transform: scale(1.2,1.2)
}
#totop:hover i{
	transform: scale(1.1,1.1)
}
@media screen and (max-width: 980px) {

}
@media screen and (max-width: 680px) {
	#totop {
		bottom: 2em;
		right: 0.5em;
	}
}
