@charset "UTF-8";
/* ------------------------------------------------
                    共通css
--------------------------------------------------- */
/*---------- カラー / バックグラウンド----------*/
.col_ocher{color:#cfac53}/*BGが赤の時使用*/
.col_ocher_dark{color:#a27800}/*BGが赤以外の時使用*/
.col_red{color:#dd1312}
.col_yellow{color:#ffef34}

.gradation_gold {
	background: linear-gradient(to right, #e9be44, #f4eeb0 50%, #e9be44);
	background: -moz-linear-gradient(left, #e9be44, #f4eeb0 50%, #e9be44);
	background: -webkit-linear-gradient(left, #e9be44, #f4eeb0 50%, #e9be44);
}
.gradation_red_both {
	background: linear-gradient(to right, #b10100, #dd1312 50%, #b10100);
	background: -moz-linear-gradient(left, #b10100, #dd1312 50%, #b10100);
	background: -webkit-linear-gradient(left, #b10100, #dd1312 50%, #b10100);
}
.gradation_red {
	background: linear-gradient(to right, #dd1312, #b10100);
	background: -moz-linear-gradient(left, #dd1312, #b10100);
	background: -webkit-linear-gradient(left, #dd1312, #b10100);
}


.bg02{
	background-image:
		url("../../img/common/bg02.jpg");
	position: relative;
}
.bg02::before{
	position: absolute;
	content:'';
	width:28vw;
	height:28vw;
	top:0;
	right:0;
	background-image: url("../../img/common/bg02_deco.png");
	background-repeat: no-repeat;
	background-size: cover;
	mix-blend-mode: multiply;
}
.bg02::after{
	position: absolute;
	content:'';
	width:28vw;
	height:28vw;
	bottom:0;
	left:0;
	transform: rotate(180deg);
	background-image: url("../../img/common/bg02_deco.png");
	background-repeat: no-repeat;
	background-size: cover;
	mix-blend-mode: multiply;
}
.bg02 .cont-inn{
	position: relative;
	z-index: 2
}

.bg03{
	background-color: #fff;
	background-image: url("../../img/common/bg03.png");
	background-size: 100%;
	background-position: left top -20vw;
}


.bg04{
	background-color: #dd1312;
	background-image: url("../../img/common/bg04.png");
	background-size: 1vw
}

@media (max-width: 768px) {
	.bg04{
		background-size: 2vw
	}
}


/*---------- header ----------*/
header {
    width: 100%;
}
header .header-txt{
	background: #000;
}
header .header-txt .header-txt-inn{
	width: 90%;
	height:30px;
    max-width: 1200px;
	margin: 0 auto;
	font-size:1.3rem;
	color:#fff;
	display: flex;
	align-items: center;
	justify-content: flex-end
}

header .header-inn {
    width: 90%;
	height:60px;
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 25px 0;*/
    display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}


/*ロゴ*/
header .header-logo {
    width: 150px;
    display: block;
	position: absolute;
	top:-15px;
	left:0;
	z-index: 5
}
header .gnav-wrap {
    width: calc(100% - 160px);
}
header .gnav-wrap ul#gnav {
    width: 100%;
    display: flex;
	justify-content: flex-end;
}
header .gnav-wrap ul#gnav li {
	display: block;
    padding: 0 1.5vw;
	position: relative
}
header .gnav-wrap ul#gnav li:last-child{
	padding-right: 0
}
header .gnav-wrap ul#gnav li:not(:first-child)::before{
	position: absolute;
	content:'';
	width:5px;
	height:5px;
	background: #cfac53;
	top:0;
	left:-1px;
	bottom:0;
	transform: rotate(45deg);
	margin: auto
}

header .gnav-wrap ul#gnav li a {
	font-family: "Noto Serif JP", serif;
    padding: 0 5px;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
	line-height: 1.2;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

@media (min-width: 769px) {
    header .gnav-wrap ul#gnav li a:hover, 
    header .gnav-wrap ul#gnav li a.is-current {
		/*border-bottom: 2px solid #000;*/
		opacity: 0.7;
      filter: alpha(opacity=70);
      -ms-filter: "alpha(opacity=70)";
    }
}
@media (max-width: 1080px) {
	header .gnav-wrap ul#gnav li a {
		font-size: 1.6vw;
	}
}
@media (max-width: 768px) {
    header {
        width: 100%;
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }
	header .header-txt .header-txt-inn{
		width: 96%;
		height:8vw;
		max-width: 1024px;
		margin: 0 auto;
		font-size:2.8vw;
		line-height: 1.2;
		color:#fff;
		display: flex;
		align-items: center;
		justify-content: flex-end
	}

    header .header-inn {
        width: 98%;
        max-width: 1024px;
        margin: 0 auto 0 0;
        padding: 4vw 0;
    }

    /*ロゴ*/
    header .header-logo {
        width: 25%;
        margin: 0 auto 0 0;
        display: block;
    }
    header .gnav-wrap {
        width: 100%;
        height: 100%;
		display: none;
        padding: 20vw 0 0;
        background: rgba(0,0,0,0.85);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 998;
    }
    header .gnav-wrap ul#gnav {
        width: 80%;
		margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        z-index: 999;
    }
	header .gnav-wrap ul#gnav li {
		padding:0;
	}
    header .gnav-wrap ul#gnav li a {
        padding: 5vw 7vw;
        color: #fff;
        font-size: 4.8vw;
        font-weight: 500;
        position: relative;
    }
	header .gnav-wrap ul#gnav li::before,
	header .gnav-wrap ul#gnav li:not(:first-child)::before{
		position: absolute;
		content:'';
		width:2vw;
		height:2vw;
		background: #cfac53;
		top:0;
		left:-1px;
		bottom:0;
		transform: rotate(45deg);
		margin: auto
	}
	
	/* 開閉ボタン */
	.sp-menu-trigger {
		width: 13.3vw;
		max-width: 60px;
		height: 13.3vw;
		max-height: 60px;
		border-radius: 50%;
		z-index: 2001;
		background: #000;
		border: none;
	}
	.sp-menu-btn {
		width: 60%;
		height: 100%;
		margin: 0 auto;
		padding: 0;
		position: relative;
	}
	.sp-menu-btn span{
		display: block;
		height: 2px;
		background: #fff;
		position:absolute;
		width: 100%;
		left: 0;
		transition: 0.5s ease-in-out;	
	}
	.sp-menu-btn span:nth-child(1){
		top: calc(50% - 15%);
	}
	.sp-menu-btn span:nth-child(2){
		top: calc(50%);
	}
	.sp-menu-btn span:nth-child(3){
		top: calc(50% + 15%);
	}

	
	/*開閉ボタンopen時*/
	.is-open .sp-menu-btn span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg);
		background: #fff;
	}
	.is-open .sp-menu-btn span:nth-child(2) {
		opacity: 0;
	}
	.is-open .sp-menu-btn span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg);
		background: #fff;
	}

}


/*---------- footer ----------*/

/* pagetop */
.pagetop a{
    width: 60px;
    height: 60px;
    margin-bottom: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:#dd1312;
    border: 2px solid #cfac53;
	border-radius: 50%;
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1;
    position: fixed;
    right: 5px;
    bottom: 5px;
    z-index: 9996;
}

@media (max-width: 768px) {
    .pagetop a{
        width: 12vw;
        height: 12vw;
        font-size: 2.8vw;
        font-weight: 500;
        line-height: 1;
        position: fixed;
        right: 0;
        bottom: 18.5vw;
        z-index: 9996;
    }
    
}

footer {
    width: 100%;
	background: linear-gradient(to bottom, #000, #262626 50%, #000);
	background: -moz-linear-gradient(top, #000, #262626 50%, #000);
	background: -webkit-linear-gradient(top, #000, #262626 50%, #000);
	padding: 80px 0
}

footer .footer-inn {
    width: 80%;
	margin: 0 auto 40px;
    display: flex;
	justify-content: center;
    color: #fff;
    font-size: 1.4rem;
}
footer .footer-inn .box{
	margin: 0 50px
}
footer .footer-inn .box p+p{
	margin-top: 20px
}
footer .footer-inn .logo{
	width:160px
}
footer .footer-inn .company_name{
	font-size: 1.5rem;
	font-weight: 600
}

@media (max-width: 768px) {
    footer {
        width: 100%;
		padding: 8vw 0;
    }
	.index footer {
			margin-bottom: 18vw
	
	}
		footer .footer-inn {
		width: 90%;
		margin: 0 auto ;
		display: flex;
			flex-wrap: wrap;
		justify-content: center;
		color: #fff;
		font-size: 3.0vw;
	}
	footer .footer-inn .box{
		width:100%;
		margin: 0 0 10vw 0;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between
	}

	footer .footer-inn .box.logo-wrap .logo{
		width:35%;
		padding: 0 4vw;

	}
	footer .footer-inn .box.logo-wrap .logo-txt{
		width:60%
	}

	footer .footer-inn .box p+p{
		margin-top:inherit
	}
	footer .footer-inn .company_name{
		width:100%;
		font-size: 3.6vw;
		font-weight: 600;
		margin-bottom: 2vw
	}

}


/*---------- コンテンツ レイアウト ----------*/
.cont-inn {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}


@media (max-width: 768px) {
    .cont-inn {
        width: 90%;
        max-width: initial;
        margin: 0 auto;
        position: relative;
    }
}



/*---------- テキスト ----------*/

.h-txt{
	font-size:2.4rem;
	font-weight: 600;
	border-bottom:2px solid #cfac53;
	margin-left: 1.8em;
	margin-bottom: 30px;
	padding-left: 0.5em;
	position: relative
}
.h-txt::before{
	position: absolute;
	content:'';
	width:1.8em;
	height:100%;
	background-image: url("../../img/common/h-txt_deco.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	top:0.15em;
	left:-1.5em;
}

.h-txt .h-txt-note{
	font-size:1.2rem;
	font-weight: 400;
	padding-left: 2em
}

@media (max-width: 768px) {
	.h-txt{
		font-size:4.2vw;
		margin-bottom: 4vw;
		padding-left: 0.5em;
	}
	.h-txt::before{
		left:-1.8em;
	}

	.h-txt .h-txt-note{
		font-size:2.8vw;
	}

}

/*---------- ボタン ----------*/
.btn{
	width:70%;
	height:68px;
	max-width: 500px;
	padding: 4px;
	margin: 0 auto;
	border-radius: 34px;
	background: linear-gradient(to right, #e9be44, #f4eeb0 50%, #e9be44);
	background: -moz-linear-gradient(left, #e9be44, #f4eeb0 50%, #e9be44);
	background: -webkit-linear-gradient(left, #e9be44, #f4eeb0 50%, #e9be44);
}
.btn a{
	width:100%;
	height:100%;
	border-radius: 34px;
	display: flex;
	align-items: center;
	padding: 0.5em 1.5em;
	font-size:2.0rem;
	color:#fff;
	position: relative;
	background: linear-gradient(to right, #2A2A2A, #000);
	background: -moz-linear-gradient(left, #2A2A2A, #000);
	background: -webkit-linear-gradient(left, #2A2A2A, #000);
}
.btn a::after{
	position: absolute;
	content:'';
	width:0.5em;
	height:0.5em;
	border-right:2px #fff solid;
	border-bottom:2px #fff solid;
	transform: rotate(-45deg);
	top:0;
	bottom:0;
	right:1em;
	margin: auto
}

.btn.small{
	width:50%;
	height:50px;
	max-width: 250px;
}
.btn.small a{font-size:1.6rem;}
.btn.red a{
	background: linear-gradient(to right, #dd1312, #b10100);
	background: -moz-linear-gradient(left, #dd1312, #b10100);
	background: -webkit-linear-gradient(left, #dd1312, #b10100);
}

@media (max-width: 768px) {
	.btn{
		width:100%;
		height:14vw;
		max-width: inherit;
		padding: 1.2vw;
		border-radius: 7vw;
	}
	.btn a{
		border-radius: 6.5vw;
		font-size:3.8vw;
	}
	.btn.small{
		width:60%;
		height:12vw;
		max-width: inherit;
	}
	.btn.small a{
		font-size:3.6vw;
	}

}

/*---------- シャドウ ----------*/
.b-shadow{
	-moz-box-shadow: 2px 2px 5px  rgba(0, 0, 0, 0.3); /* Firefox 3.6 and earlier */
	-webkit-box-shadow: 2px 2px 5px  rgba(0, 0, 0, 0.3); /* Safari and Chrome */
	box-shadow: 2px 2px 5px  rgba(0, 0, 0, 0.3);

}


/*---------- cta area ----------*/

.cta-area{
	width:100%;
	background: linear-gradient(to right, #b10100, #dd1312 50%, #b10100);
	background: -moz-linear-gradient(left, #b10100, #dd1312 50%, #b10100);
	background: -webkit-linear-gradient(left, #b10100, #dd1312 50%, #b10100);
	position: relative;
	padding: 35px 0;
		text-align: center
}
.index .cta-area::before{
	position: absolute;
	content: '';
	width: 50%;
	height: 80px;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	background: linear-gradient(to right, #b10100, #dd1312);
	background: -moz-linear-gradient(left, #b10100, #dd1312);
	background: -webkit-linear-gradient(left, #b10100, #dd1312);
	top: -80px;
	left: 0;
}

.index .cta-area::after{
	position: absolute;
	content: '';
	width: 50%;
	height: 80px;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	background: linear-gradient(to right, #dd1312, #b10100);
	background: -moz-linear-gradient(left, #dd1312, #b10100);
	background: -webkit-linear-gradient(left, #dd1312, #b10100);
	top: -80px;
	left: 50%;
}

.cta-area .top-txt{
	color:#fff;
		font-size:3.8rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;

}
.cta-area-inn{
	width:96%;
	margin: 0 auto;
	display: flex;
	justify-content: center;


}
.cta-area-inn .cta-item{
	width:calc((100% - 40px) /2);
	max-width: 500px;
	background: linear-gradient(to right, #e9be44, #f4eeb0 50%, #e9be44);
	background: -moz-linear-gradient(left, #e9be44, #f4eeb0 50%, #e9be44);
	background: -webkit-linear-gradient(left, #e9be44, #f4eeb0 50%, #e9be44);
	margin: 20px 10px 0;
	padding: 4px
}
.cta-area-inn .cta-item-inn{
	background: linear-gradient(to right, #fff, #cfac53);
	background: -moz-linear-gradient(left, #fff, #cfac53);
	background: -webkit-linear-gradient(left, #fff, #cfac53);
	height:100%
}

.cta-area-inn .cta-item-inn .cont-item-deco{
	padding: 15px 20px 15px 24%;
	background-image: url("../../img/common/cta_deco.png");
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: left center;
	height:100%;
	position: relative
}

.cta-area-inn .cta-item .txt{
	position: relative
}
.cta-area-inn .cta-item .txt::before{
	position: absolute;
	content:'';
	width:30%;
	height:100%;
	top:5px;
	left:-31%;
	background-size: 60%;
	background-repeat: no-repeat;
	background-position: top right
}
.cta-area-inn .cta-item.tel .txt::before{
	background-image: url("../../img/common/icon-tel2.svg")
}
.cta-area-inn .cta-item.mail .txt::before{
	background-image: url("../../img/common/icon-mail2.svg")
}

.cta-area-inn .cta-item.tel .txt{
	font-size:4.5rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	line-height: 1;
	paint-order: stroke;
	stroke-linejoin: round;
	-webkit-text-stroke: 5px #fff;
	text-stroke: 5px #fff;
	color:#dd1312;
	 /*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);*/
}
.cta-area-inn .cta-item.tel .note{
	font-size:2.2rem;
	font-weight: 700;
	margin-top: 5px
}

.cta-area-inn .cta-item.tel{
	position: relative
}
.cta-area-inn .cta-item.tel::before{
	position: absolute;
	content:'通話\A無料';
	white-space: pre;
	width:74px;
	height:74px;
	border-radius: 50%;
	border:2px solid #a27800;
	background-color:#000;
	background: linear-gradient(135deg, #000, #000 50%, #403d3c 50%,#000);
color:#ffef34;
	font-size:2.1rem;
	font-weight: 600;
	line-height: 1.1;
	display: flex;
	align-items: center;
	justify-content: center;
	top:-60px;
	left:-10px;
	z-index: 3
	
}

.cta-area-inn .cta-item.mail .txt{
	font-size:3.4rem;
	font-weight: 700;
	line-height: 1.5;
	paint-order: stroke;
	stroke-linejoin: round;
	-webkit-text-stroke: 5px #fff;
	text-stroke: 5px #fff;
	 /*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);*/
}
.cta-area-inn .cta-item.mail .note{
	font-size:2.2rem;
	font-weight: 700;
	color:#dd1312;
}


@media (max-width: 1080px) {
	.cta-area .top-txt{
		font-size:3.8vw;
	}
	.cta-area-inn .cta-item.tel .txt{
		font-size:4.5vw;
	}
	.cta-area-inn .cta-item.tel .note{
		font-size:2.2vw;
	}
	.cta-area-inn .cta-item.mail .txt{
		font-size:3.4vw;
	}
	.cta-area-inn .cta-item.mail .note{
		font-size:2.2vw;
	}

}

@media (max-width: 768px) {
	.cta-area{
		padding: 4vw 0 6vw;
	}
.index .cta-area::before{
		height: 8vw;
		top: -7.9vw;
	}

	.index .cta-area::after{
		width: 50%;
		height: 8vw;
		top: -7.9vw;
	}

	.cta-area .top-txt{
		font-size:3.8vw;

	}
	.cta-area-inn{
		width:80%;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		flex-wrap: wrap


	}
	.cta-area-inn .cta-item{
		width:100%;
		max-width: inherit;
		margin: 2vw 0 0;
		padding: 1.2vw
	}

	.cta-area-inn .cta-item-inn .cont-item-deco{
		padding:1vw 2vw 1vw 24%;
		background-image: url("../../img/common/cta_deco.png");
		background-size: 70%;
		background-repeat: no-repeat;
		background-position: left center;
		height:100%;
		position: relative
	}

	.cta-area-inn .cta-item .txt{
		position: relative
	}
	.cta-area-inn .cta-item .txt::before{
		position: absolute;
		content:'';
		width:30%;
		height:120%;
		top:1vw;
		left:-30%;
		background-size: 60%;
		background-repeat: no-repeat;
		background-position: top right
	}
	.cta-area-inn .cta-item.tel .txt{
		font-size:6vw;
		letter-spacing: 0.1em;
		-webkit-text-stroke: 1.5vw #fff;
		text-stroke: 1.5vw #fff;
	}
	.cta-area-inn .cta-item.tel .note{
		font-size:3.2vw;
		font-weight: 700;
		margin-top: 1vw
	}


	.cta-area-inn .cta-item.tel::before{
		position: absolute;
		content:'通話\A無料';
		white-space: pre;
		width:12vw;
		height:12vw;
		border-radius: 50%;
		border:2px solid #a27800;
		background-color:#000;
		background: linear-gradient(135deg, #000, #000 50%, #403d3c 50%,#000);
		color:#ffef34;
		font-size:3vw;
		font-weight: 600;
		line-height: 1.1;
		display: flex;
		align-items: center;
		justify-content: center;
		top:-2vw;
		left:-7vw;
		z-index: 3

	}

		.cta-area-inn .cta-item.mail .txt{
			font-size:4.8vw;
			line-height: 1.4;
			paint-order: stroke;
			stroke-linejoin: round;
			-webkit-text-stroke: 1.5vw #fff;
			text-stroke: 1.5vw #fff;
		}
		.cta-area-inn .cta-item.mail .note{
			font-size:3.2vw;
		}

	
}
